BridgeOperation<T>: {
    graphqlDocument: DocumentNode;
    graphqlDocumentSource: string;
    httpMethod: OpenAPIV3.HttpMethods;
    openAPIOperation: OpenAPIV3.OperationObject<T>;
    path: string;
    requestBodyFormData?: "JSON" | "FORM_DATA" | "MULTIPART_FORM_DATA";
    requestBodyIsSingleInput?: boolean;
    requestBodyVariableMap: Record<string, string>;
    variableMap: Record<string, string>;
}

Type Parameters

Type declaration

  • graphqlDocument: DocumentNode
  • graphqlDocumentSource: string
  • httpMethod: OpenAPIV3.HttpMethods
  • openAPIOperation: OpenAPIV3.OperationObject<T>
  • path: string
  • Optional requestBodyFormData?: "JSON" | "FORM_DATA" | "MULTIPART_FORM_DATA"
  • Optional requestBodyIsSingleInput?: boolean
  • requestBodyVariableMap: Record<string, string>
  • variableMap: Record<string, string>

Generated using TypeDoc