TGraphQLExecuter.Execute Method
Overloads
TGraphQLExecuter.Execute
Executes the GraphQL document using the input information provided in the Create constructor.
Remarks
The result of execution (even if there are errors) is provided in the TGraphQLResponse object returned by the function. You must destroy the returned object after you have used it.
Syntax
Unit: GraphQL.Executer
function TGraphQLExecuter.Execute: TGraphQLResponse; overload;
See also
TGraphQLExecuter.Execute(TGraphQLResponse)
Executes the GraphQL document using the input information provided in the Create constructor.
Syntax
Unit: GraphQL.Executer
procedure TGraphQLExecuter.Execute(AResponse: TGraphQLResponse); overload;
Parameters
<-> | Parameter | Type | Description |
---|---|---|---|
AResponse | TGraphQLResponse | An instance of TGraphQLResponse that will be filled with information by the executer. It's up to the caller to create and destroy such instance. |