Skip to main content

Getting started

Try running the following query in the API Playground to retrieve all assets created since the beginning of 2022:

{
assetSearch(
keyword: "*"
first: 100
filters: { createdDate: "2022-01-01T00:00:00.000Z TO NOW" }
sort: { createdDate: DESC }
) {
total
pageInfo {
hasNextPage
endCursor
}
edges {
node {
id
name
}
}
}
}

For more query and mutation examples, visit the Examples page.