Skip to content

Commit

Permalink
Fix cursor in queries
Browse files Browse the repository at this point in the history
  • Loading branch information
mirohudec committed Mar 12, 2024
1 parent 48aa32d commit b9c43b9
Showing 1 changed file with 5 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,7 @@
{{ input }})
{
edges {
cursor {
ID
}
cursor
node {
id
Properties
Expand Down Expand Up @@ -173,9 +171,7 @@
query QueryResourcesByAltId($poolId: ID, $input: Map!, $first: Int, $last: Int, $after: String, $before: String) {
QueryResourcesByAltId(input: $input, poolId: $poolId, first: $first, last: $last, after: $after, before: $before) {
edges {
cursor {
ID
}
cursor
node {
id
Properties
Expand Down Expand Up @@ -258,9 +254,7 @@
Name
}
}
cursor{
ID
}
cursor
}
}
}
Expand Down Expand Up @@ -356,9 +350,7 @@ def query_claimed_resources(task, logs):
"data": {
"<query_type>": {
edges [
cursor {
<ID>
}
cursor: "<ID>"
node {
"id": "<id>",
"Properties": {
Expand Down Expand Up @@ -1468,9 +1460,7 @@ def query_recently_active_resources(task, logs):
Name
}
}
cursor{
ID
}
cursor: "<ID>"
}
}
}
Expand Down

0 comments on commit b9c43b9

Please sign in to comment.