interface GraphQLNodeParameters {
allowUnauthorizedCerts?: boolean;
authentication?:
| "oAuth2"
| "none"
| "basicAuth"
| "customAuth"
| "digestAuth"
| "headerAuth"
| "queryAuth"
| "oAuth1";
dataPropertyName?: string;
endpoint?: string;
headerParametersUi?: {
parameter: { name?: string; value?: string }[];
};
operationName?: string;
query?: string;
requestFormat?: "json"
| "graphql";
requestMethod?: "GET" | "POST";
responseFormat?: "string" | "json";
variables?: string;
}Properties§
§
readonly authentication?:
| "oAuth2"
| "none"
| "basicAuth"
| "customAuth"
| "digestAuth"
| "headerAuth"
| "queryAuth"
| "oAuth1"The way to authenticate Default: "none"
readonly data Property Name?: stringName of the property to which to write the response data Default: "data"
readonly endpoint?: stringThe GraphQL endpoint
readonly header Parameters Ui?: { ... }The headers to send Default: {} Type options: {"multipleValues":true}
readonly operation Name?: stringName of operation to execute
readonly query?: stringGraphQL query Type options: {"rows":6}
readonly request Format?: "json" | "graphql"The format for the query payload Default: "graphql"
readonly request Method?: "GET" | "POST"The underlying HTTP request method to use Default: "POST"
readonly response Format?: "string" | "json"The format in which the data gets returned from the URL Default: "json"
readonly variables?: stringQuery variables as JSON object
Whether to download the response even if SSL certificate validation is not possible