Find a Grave GraphQL query
findagrave_graphqlRun read-only GraphQL queries against Find a Grave's API to fetch data that other tools do not return.
Instructions
Run a read-only GraphQL query against Find a Grave's own API (https://www.findagrave.com/orc/graphql) for data the other tools do not return. Mutations are refused. Full schema introspection is disabled, but { __type(name: "Memorial") { fields { name } } } lists a type's fields; docs/endpoints.md lists the useful queries and types (memorialsById, memorialSearch, cemeteries, locationsByTypeahead, browse, flowersForMemorial, getPhotos, virtualCemeterySearch). Prefer the other tools: their results are projected to fit and their filters are checked.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | GraphQL query text, e.g. query($ids:[ID!]!){ memorialsById(ids:$ids){ id plot gravesiteDetails } } | |
| action | Yes | query | |
| variables | No | Variables for the query, e.g. {"ids":["94640355"]} |