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§
Source§readonly authentication?:
| "oAuth2"
| "none"
| "basicAuth"
| "customAuth"
| "digestAuth"
| "headerAuth"
| "queryAuth"
| "oAuth1"
readonly authentication?:
| "oAuth2"
| "none"
| "basicAuth"
| "customAuth"
| "digestAuth"
| "headerAuth"
| "queryAuth"
| "oAuth1"
The way to authenticate Default: "none"
Source§readonly data Property Name?: string
readonly data Property Name?: string
Name of the property to which to write the response data Default: "data"
Source§readonly header Parameters Ui?: { parameter: { name?: string; value?: string }[] }
readonly header Parameters Ui?: { parameter: { name?: string; value?: string }[] }
The headers to send Default: {} Type options: {"multipleValues":true}
Source§readonly request Format?: "json" | "graphql"
readonly request Format?: "json" | "graphql"
The format for the query payload Default: "graphql"
Source§readonly request Method?: "GET" | "POST"
readonly request Method?: "GET" | "POST"
The underlying HTTP request method to use Default: "POST"
Whether to download the response even if SSL certificate validation is not possible