Skip to main content

Perform a Temporal search

This page shows how to query Animeshon's Knowledge Base asking for content released in the specified span of time.

Sample

Customize the query to meet your need.

Dates must be provided as strings in YYYY-MM-DD format.

tip

Visit https://animeshon.com/graphql to browse the GraphQL embedded documentation.

There is a single unified endpoint for Animeshon GraphQL queries and mutations: https://animeshon.com/graphql.

query {
searchTemporal(
first: 10
offset: 0
filter: {}
order: { sorting: DATE, sortingDiretion: ASC }
afterTime: "[DATE-FROM YYYY-MM-DD]"
beforeTime: "[DATE-TO YYYY-MM-DD]"
) {
resultTotal
results {
... on GraphGeneric {
entityType
name
names {
text
localizationTag
}
}
... on GraphContent {
publishingType
original
status
releaseDate {
year
month
day
}
}
}
}
}
View on GitHub