interface DeepClientOptions<L> {
    apolloClient?: IApolloClient<any>;
    deep?: DeepClientInstance<L>;
    defaultDeleteName?: string;
    defaultInsertName?: string;
    defaultSelectName?: string;
    defaultUpdateName?: string;
    deleteReturning?: string;
    filesSelectReturning?: string;
    handleAuth?: ((linkId?, token?) => any);
    insertReturning?: string;
    linkId?: number;
    linksSelectReturning?: string;
    minilinks?: MinilinkCollection<any, Link<number>>;
    returning?: string;
    selectReturning?: string;
    selectorsSelectReturning?: string;
    silent?: boolean;
    table?: string;
    token?: string;
    unsafe?: any;
    updateReturning?: string;
    valuesSelectReturning?: string;
}

Type Parameters

Properties

apolloClient?: IApolloClient<any>
defaultDeleteName?: string
defaultInsertName?: string
defaultSelectName?: string
defaultUpdateName?: string
deleteReturning?: string
filesSelectReturning?: string
handleAuth?: ((linkId?, token?) => any)

Type declaration

    • (linkId?, token?): any
    • Parameters

      • Optional linkId: number
      • Optional token: string

      Returns any

insertReturning?: string
linkId?: number
linksSelectReturning?: string
minilinks?: MinilinkCollection<any, Link<number>>
returning?: string
selectReturning?: string
selectorsSelectReturning?: string
silent?: boolean
table?: string
token?: string
unsafe?: any
updateReturning?: string
valuesSelectReturning?: string

Generated using TypeDoc