Request:
{
"query": "query FinancialFilingWithOffset { FinancialFiling(filter: {FilingDocument: {Identifiers: {Cik: {EQ: \"0001326801\"}}}}, sort: {FilingDocument: {DocumentSummary: {FilingDate: DESC}}}, limit: 100, offset: 0) { _metadata { identifier totalCount } FilingDocument { DocId FinancialFilingId Identifiers { OrganizationId Dcn Cik } DocumentSummary { DocumentTitle FilingDate FormType DocumentType FeedName SourceName SecAccessionNumber } } } }"
}
Response:
{
"errors": [
{
"message": "Validation error (UnknownArgument@[FinancialFiling]) : Unknown field argument 'offset'",
"locations": [
{
"line": 1,
"column": 194
}
],
"extensions": {
"classification": "ValidationError",
"requestId": "6c2c4d91-5cca-41d5-9042-1237b0c22a06_313701"
}
}
],
"data": null
}
Question:
We set a limit of 100 filings. What if we want the next 100 filings? How do we query for it?
We try offset (which is shown as a valid attribute via introspection) but we are getting the error.