Add GraphQL query name to other queries

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2022-11-06 15:09:54 +01:00
parent da78410039
commit f593867d8e
3 changed files with 3 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ export const ACTOR_FRAGMENT = gql`
`;
export const FETCH_PERSON = gql`
query ($username: String!) {
query FetchPerson($username: String!) {
fetchPerson(preferredUsername: $username) {
...ActorFragment
suspended