@vnodes/graphql
    Preparing search index...

    Interface ObjectTypeOptions

    Interface defining options that can be passed to @ObjectType() decorator

    interface ObjectTypeOptions {
        description?: string;
        implements?: Function | Function[] | (() => Function | Function[]);
        inheritDescription?: boolean;
        isAbstract?: boolean;
    }
    Index

    Properties

    description?: string

    Description of the input type.

    implements?: Function | Function[] | (() => Function | Function[])

    Interfaces implemented by this object type.

    inheritDescription?: boolean

    If true, direct descendant classes will inherit the parent's description if own description is not set. Also works on classes marked with isAbstract: true.

    isAbstract?: boolean

    If true, type will not be registered in the schema.