From a47f4f6444d12a13a6f7e79ed6746e74088ca294 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Tue, 12 Dec 2023 11:40:56 +0100 Subject: [PATCH] fix(graphql): add missing operation name for RegisterPerson Signed-off-by: Thomas Citharel --- src/graphql/actor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphql/actor.ts b/src/graphql/actor.ts index e188048c7..32fa6a550 100644 --- a/src/graphql/actor.ts +++ b/src/graphql/actor.ts @@ -453,7 +453,7 @@ export const DELETE_PERSON = gql` * Prefer CREATE_PERSON when creating another identity */ export const REGISTER_PERSON = gql` - mutation ( + mutation RegisterPerson( $preferredUsername: String! $name: String! $summary: String!