IGraphQLList Interface
Represents an ordered collection of values.
Remarks
This is the main type that represents a GraphQL list. Whenever you need to represent lists in GraphQL you should use this interface. Whenever the framework provides you with GraphQL information that contains a list, it will be represented as this interface.
Syntax
Unit: GraphQL.Types
IGraphQLList = interface(IInterface);
Methods
Name | Description |
---|---|
GetItem | Returns the element at the specified index. |
Add | Adds a value to the end of the list. |
Count | Returns the number of items in the list |
Properties
Name | Description |
---|---|
Items[Index] | Returns the element at the specified index. |