class PaginatedQueryCreator extends QueryCreator implements OperationResolver

A helper class for making a paginated query. A paginated query uses the {@link Connection} object type to encapsulate the edges, nodes and page information.

Traits

Injectable

Methods

__construct(Manager $manager = null)

No description

array
attributes()

Returns any fixed attributes for this type. E.g. 'name' or 'description'

Type|callable
type()

Gets the type for elements within this query, or callback to lazy-load this type

array
args()

No description

array
getAttributes()

Merge all attributes for this query (type, attributes, resolvers, etc).

array
toArray()

Convert the Fluent instance to an array.

mixed
__get(string $key)

Dynamically retrieve the value of an attribute.

bool
__isset(string $key)

Dynamically check if an attribute is set.

createConnection()

Get connection for this query

getConnection()

No description

mixed
resolve($value, array $args, mixed $context, ResolveInfo $info)

Invoked by the Executor class to resolve this mutation / query

Details

in FieldCreator at line 29
__construct(Manager $manager = null)

Parameters

Manager $manager Used to retrieve types (including the one returned from this creator), and nest field types regardless of instantiation of their creators.

in FieldCreator at line 40
array attributes()

Returns any fixed attributes for this type. E.g. 'name' or 'description'

Return Value

array

at line 46
Type|callable type()

Gets the type for elements within this query, or callback to lazy-load this type

Return Value

Type|callable

at line 41
array args()

Return Value

array

in FieldCreator at line 72
array getAttributes()

Merge all attributes for this query (type, attributes, resolvers, etc).

Return Value

array

in FieldCreator at line 97
array toArray()

Convert the Fluent instance to an array.

Return Value

array

in FieldCreator at line 109
mixed __get(string $key)

Dynamically retrieve the value of an attribute.

Parameters

string $key

Return Value

mixed

in FieldCreator at line 122
bool __isset(string $key)

Dynamically check if an attribute is set.

Parameters

string $key

Return Value

bool

at line 27
abstract Connection createConnection()

Get connection for this query

Return Value

Connection

at line 29
getConnection()

at line 51
mixed resolve($value, array $args, mixed $context, ResolveInfo $info)

Invoked by the Executor class to resolve this mutation / query

Parameters

$value
array $args
mixed $context
ResolveInfo $info

Return Value

mixed