PaginatedQueryCreator
abstract class PaginatedQueryCreator extends QueryCreator implements OperationResolver (View source)
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
A class that can be instantiated or replaced via DI
Methods
An implementation of the factory method, allows you to create an instance of a class
Creates a class instance by the "singleton" design pattern.
Returns any fixed attributes for this type. E.g. 'name' or 'description'
Gets the type for elements within this query, or callback to lazy-load this type
No description
Merge all attributes for this query (type, attributes, resolvers, etc).
Get connection for this query
No description
Invoked by the Executor class to resolve this mutation / query
Details
static Injectable
create(array ...$args)
An implementation of the factory method, allows you to create an instance of a class
This method will defer class substitution to the Injector API, which can be customised via the Config API to declare substitution classes.
This can be called in one of two ways - either calling via the class directly, or calling on Object and passing the class name as the first parameter. The following are equivalent: $list = DataList::create(SiteTree::class); $list = SiteTree::get();
static Injectable
singleton(string $class = null)
Creates a class instance by the "singleton" design pattern.
It will always return the same instance for this class, which can be used for performance reasons and as a simple way to access instance methods which don't rely on instance data (e.g. the custom SilverStripe static handling).
__construct(Manager $manager = null)
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()
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.
abstract Connection
createConnection()
Get connection for this query
getConnection()
mixed
resolve($value, array $args, mixed $context, ResolveInfo $info)
Invoked by the Executor class to resolve this mutation / query