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