Skip to content

Commit 9635f11

Browse files
committed
feat: rename GraphQL query to TaskDatasets for clarity
1 parent 30ad184 commit 9635f11

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/config.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,9 @@ export const SUPPORTED_CHAINS = [
4141
subgraphUrl: {
4242
poco: 'https://thegraph.arbitrum-sepolia-testnet.iex.ec/api/subgraphs/id/2GCj8gzLCihsiEDq8cYvC5nUgK6VfwZ6hm3Wj8A3kcxz',
4343
dataprotector:
44-
'https://thegraph.arbitrum-sepolia-testnet.iex.ec/api/subgraphs/id/5YjRPLtjS6GH6bB4yY55Qg4HzwtRGQ8TaHtGf9UBWWd',
45-
pocoBulk: 'https://api.studio.thegraph.com/query/11362/poco-bulk/version/latest/',
44+
'https://thegraph.arbitrum-sepolia-testnet.iex.ec/api/subgraphs/id/5YjRPLtjS6GH6bB4yY55Qg4HzwtRGQ8TaHtGf9UBWWd',
45+
pocoBulk:
46+
'https://api.studio.thegraph.com/query/11362/poco-bulk/version/latest/',
4647
},
4748
wagmiNetwork: arbitrumSepolia,
4849
tokenSymbol: 'RLC',

src/modules/tasks/task/taskDatasetsPocoBulkQuery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { graphql } from '@/graphql/pocoBulk/gql';
22

33
export const taskDatasetsQuery = graphql(`
4-
query Task($taskId: ID!) {
4+
query TaskDatasets($taskId: ID!) {
55
task(id: $taskId) {
66
bulkSlice {
77
datasets(first: 10, orderBy: timestamp, orderDirection: desc, skip: 0) {

0 commit comments

Comments
 (0)