Skip to main content

Get external cross-references

This page shows how to get external cross-references linked to an Animeshon Knowledge Base's entity. Getting the external cross-references of an entity is particularly useful when building applications/scripts to bridge different external providers.

Sample

Replace [RESOURCE-NAME] with a valid content in Animeshon's Knowledge Base.

tip

Try with characters/3863146434608265184.

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 {
getGraphGeneric(name: "[RESOURCE-NAME]") {
name
crossrefs {
externalID
kind
partial
namespace
key
website {
formattedAddress
}
}
}
}
View on GitHub