Query
Arguments
Fields
Query example
# query
query addedCompanies($activatedAtTimeFrame: TimeFrame!, $first: Int!, offset: Int!) {
addedCompanies(activatedAtTimeFrame: $activatedAtTimeFrame, first: $first, offset: $offset) {
nodes {
activatedAt
displayName
duns
homepage
id
slug
}
totalCount
}
}
# variables
{ "activatedAtTimeFrame": {
"from": "2020-07-03",
"to": "2020-07-07"
},
"first": 10,
"offset": 10
}Last updated
Was this helpful?