TSchemaInputValue.Create Constructor
Overloads
TSchemaInputValue.Create(string, TSchemaAssignableType)
Creates an input value with the specified name and type.
Syntax
Unit: GraphQL.Schema
constructor TSchemaInputValue.Create(const AName: string; AValueType: TSchemaAssignableType);
Parameters
| <-> | Parameter | Type | Description |
|---|---|---|---|
| const | AName | string | The name of the input value. |
| AValueType | TSchemaAssignableType | The type of the input value. |
See also
TSchemaInputValue.Create(string, string)
Creates an input value with the specified name and type.
Syntax
Unit: GraphQL.Schema
constructor TSchemaInputValue.Create(const AName: string; const AValueTypeName: string);
Parameters
| <-> | Parameter | Type | Description |
|---|---|---|---|
| const | AName | string | The name of the input value. |
| const | AValueTypeName | string | The type name of the input value. |