-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAgentConfigurationConnectionQueryObject.php
More file actions
41 lines (33 loc) · 1.18 KB
/
AgentConfigurationConnectionQueryObject.php
File metadata and controls
41 lines (33 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
namespace GraphQL\SchemaObject;
class AgentConfigurationConnectionQueryObject extends QueryObject
{
const OBJECT_NAME = "AgentConfigurationConnection";
public function selectEdges(AgentConfigurationConnectionEdgesArgumentsObject $argsObject = null)
{
$object = new AgentConfigurationEdgeQueryObject("edges");
if ($argsObject !== null) {
$object->appendArguments($argsObject->toArray());
}
$this->selectField($object);
return $object;
}
public function selectNodes(AgentConfigurationConnectionNodesArgumentsObject $argsObject = null)
{
$object = new AgentConfigurationQueryObject("nodes");
if ($argsObject !== null) {
$object->appendArguments($argsObject->toArray());
}
$this->selectField($object);
return $object;
}
public function selectPageInfo(AgentConfigurationConnectionPageInfoArgumentsObject $argsObject = null)
{
$object = new PageInfoQueryObject("pageInfo");
if ($argsObject !== null) {
$object->appendArguments($argsObject->toArray());
}
$this->selectField($object);
return $object;
}
}