Interface GraphQLProps

Source
interface GraphQLProps {
    alwaysOutputData?: boolean;
    disabled?: boolean;
    executeOnce?: boolean;
    httpBasicAuthCredentials?: Credentials<
        HttpBasicAuthCredentials,
    >;
    httpCustomAuthCredentials?: Credentials<
        HttpCustomAuthCredentials,
    >;
    httpDigestAuthCredentials?: Credentials<
        HttpDigestAuthCredentials,
    >;
    httpHeaderAuthCredentials?: Credentials<
        HttpHeaderAuthCredentials,
    >;
    httpQueryAuthCredentials?: Credentials<
        HttpQueryAuthCredentials,
    >;
    label?: string;
    maxTries?: number;
    notes?: string;
    notesInFlow?: boolean;
    oAuth1ApiCredentials?: Credentials<
        OAuth1ApiCredentials,
    >;
    oAuth2ApiCredentials?: Credentials<
        OAuth2ApiCredentials,
    >;
    onError?: | "continueRegularOutput"
    | "continueErrorOutput";
    parameters: GraphQLNodeParameters;
    position?: NodePosition;
    retryOnFail?: boolean;
}

Properties§

Source§

alwaysOutputData?: boolean

Source§

disabled?: boolean

If true, the node won't run but subsequent nodes WILL be executed

default
false
Source§

executeOnce?: boolean

If active, the node executes only once, with data from the first item it receives

default
false
Source§

readonly httpBasicAuthCredentials?: Credentials<HttpBasicAuthCredentials>

Source§

readonly httpCustomAuthCredentials?: Credentials<HttpCustomAuthCredentials>

Source§

readonly httpDigestAuthCredentials?: Credentials<HttpDigestAuthCredentials>

Source§

readonly httpHeaderAuthCredentials?: Credentials<HttpHeaderAuthCredentials>

Source§

readonly httpQueryAuthCredentials?: Credentials<HttpQueryAuthCredentials>

Source§

label?: string

Source§

maxTries?: number

Number of times to attempt to execute the node before failing the execution Enabled if retryOnFail is true

default
3
Source§

notes?: string

Optional note to save with the node

default
undefined
Source§

notesInFlow?: boolean

Source§

readonly oAuth1ApiCredentials?: Credentials<OAuth1ApiCredentials>

Source§

readonly oAuth2ApiCredentials?: Credentials<OAuth2ApiCredentials>

Source§

onError?: "continueRegularOutput" | "continueErrorOutput"

Action to take when the node execution fails When undefined, an error will stop the workflow execution

default
undefined
Source§

readonly parameters: GraphQLNodeParameters

Source§

position?: NodePosition

Source§

retryOnFail?: boolean

If active, the node tries to execute again when it fails

default
false