-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagent.toml
71 lines (65 loc) · 1.06 KB
/
agent.toml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[operations]
QUERY_GET_AGENT = """
query QUERY_GET_AGENT($agentId: ID!) {
agents (where: {id: $agentId}) {
id
label
createdTimestamp
namespace
}
}
"""
GQL_ADD_AGENTS = """
mutation addAgents($input: [AgentCreateInput!]!) {
addAgents(input: $input) {
agents {
label
createdTimestamp
namespace
}
}
}
"""
GQL_DELETE_AGENT = """
mutation deleteAgent($id: ID!) {
deleteAgents(
where: { id: $id }
delete: {
blobEntries: {
where: { node: { parentConnection: {Agent: {node: {id: $id } } } } }
}
}
) {
nodesDeleted
relationshipsDeleted
}
}
"""
QUERY_LIST_AGENTS = """
query listAgents($id: ID!) {
orgs(where: {id: $id}) {
agents {
label
}
}
}
"""
QUERY_GET_AGENT_METADATA = """
query getAgentMetadata($id: ID!) {
agents(where: {id: $id}) {
metadata
}
}
"""
QUERY_SET_AGENT_METADATA = """
mutation setAgentMetadata($id: ID!, $meta: String!) {
updateAgents(
where: { id: $id }
update: { metadata: $meta }
) {
agents {
metadata
}
}
}
"""