Skip to content

Commit f2a22ba

Browse files
committed
fix(scheduler-utils): gql query processes with ao data protocol
1 parent 9110d6a commit f2a22ba

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

scheduler-utils/src/client/gateway.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,12 @@ export function loadProcessSchedulerWith ({ fetch, GRAPHQL_URL, GRAPHQL_MAX_RETR
4343

4444
const GET_TRANSACTIONS_QUERY = `
4545
query GetTransactions ($transactionIds: [ID!]!) {
46-
transactions(ids: $transactionIds) {
46+
transactions(
47+
ids: $transactionIds
48+
tags: [
49+
{ name: "Data-Protocol", values: ["ao"] }
50+
]
51+
) {
4752
edges {
4853
node {
4954
tags {

0 commit comments

Comments
 (0)