Perform a Full-Text search
This page shows how to query Animeshon's Knowledge Base asking for contents matching the provided string.
Sample
Customize the query to meet your need.
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 {
searchFulltext(
query: "[QUERY]"
order: { sorting: RELEVANCE, sortingDiretion: DESC }
filter: { discardSelfpublished: false, typesAllowed: [Anime, GraphicNovel] }
first: 10
offset: 0
) {
resultTotal
results {
... on GraphGeneric {
entityType
name
names {
text
localizationTag
}
}
... on GraphContent {
publishingType
original
status
releaseDate {
year
month
day
}
}
}
}
}