Add GraphQL query name where it was missing

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2022-11-06 11:58:17 +01:00
parent 30b0d3ca08
commit e812b4291b
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ import gql from "graphql-tag";
import { ACTOR_FRAGMENT } from "./actor";
export const DASHBOARD = gql`
query {
query Dashboard {
dashboard {
lastPublicEventPublished {
id
@ -167,7 +167,7 @@ export const REJECT_RELAY = gql`
`;
export const LANGUAGES = gql`
query {
query Languages {
languages {
code
name
@ -204,7 +204,7 @@ export const ADMIN_SETTINGS_FRAGMENT = gql`
`;
export const ADMIN_SETTINGS = gql`
query {
query AdminSettings {
adminSettings {
...adminSettingsFragment
}