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

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
}