1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00

GITBOOK-474: change request with no subject merged in GitBook

This commit is contained in:
Veronica Manuel 2023-06-09 00:08:04 +00:00 committed by gitbook-bot
parent 7a7356f9f5
commit 01a93bebe0
No known key found for this signature in database
GPG Key ID: 07D2180C7B12D0FF

View File

@ -63,16 +63,13 @@ Copy and paste the query below to fetch a list of data NFTs in the Ocean Subgrap
```graphql ```graphql
query GetFilteredOrders { query GetFilteredOrders {
orders ( orders(
where: { where: { datatoken: { id: "0xc22bfd40f81c4a28c809f80d05070b95a11829d9" } }
datatoken_in: ["0xc22bfd40f81c4a28c809f80d05070b95a11829d9", "0xdatatoken_address2"],
consumer_in: ["0xconsumer1"]
}
orderBy: createdTimestamp orderBy: createdTimestamp
orderDirection: desc orderDirection: desc
first: 1000 first: 1000
) { ) {
datatoken{ datatoken {
id id
name name
symbol symbol
@ -80,7 +77,7 @@ query GetFilteredOrders {
id id
} }
} }
consumer{ consumer {
id id
} }
} }