[ESLint] Prefer named exports (#427)
This commit is contained in:
@@ -9,7 +9,6 @@
|
||||
import gql from 'graphql-tag';
|
||||
import { WEBUI_UPDATE_STATUS } from '@/lib/graphql/Fragments';
|
||||
|
||||
// eslint-disable-next-line import/prefer-default-export
|
||||
export const UPDATE_WEBUI = gql`
|
||||
${WEBUI_UPDATE_STATUS}
|
||||
mutation UPDATE_WEBUI($input: WebUIUpdateInput = {}) {
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
import gql from 'graphql-tag';
|
||||
import { FULL_DOWNLOAD_STATUS } from '@/lib/graphql/Fragments';
|
||||
|
||||
// eslint-disable-next-line import/prefer-default-export
|
||||
export const GET_DOWNLOAD_STATUS = gql`
|
||||
${FULL_DOWNLOAD_STATUS}
|
||||
query GET_DOWNLOAD_STATUS {
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
import gql from 'graphql-tag';
|
||||
import { SERVER_SETTINGS } from '@/lib/graphql/Fragments';
|
||||
|
||||
// eslint-disable-next-line import/prefer-default-export
|
||||
export const GET_SERVER_SETTINGS = gql`
|
||||
${SERVER_SETTINGS}
|
||||
query GET_SERVER_SETTINGS {
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
import gql from 'graphql-tag';
|
||||
import { FULL_UPDATER_STATUS } from '@/lib/graphql/Fragments';
|
||||
|
||||
// eslint-disable-next-line import/prefer-default-export
|
||||
export const GET_UPDATE_STATUS = gql`
|
||||
${FULL_UPDATER_STATUS}
|
||||
query GET_UPDATE_STATUS {
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
import gql from 'graphql-tag';
|
||||
import { FULL_DOWNLOAD_STATUS } from '@/lib/graphql/Fragments';
|
||||
|
||||
// eslint-disable-next-line import/prefer-default-export
|
||||
export const DOWNLOAD_STATUS_SUBSCRIPTION = gql`
|
||||
${FULL_DOWNLOAD_STATUS}
|
||||
subscription DOWNLOAD_STATUS_SUBSCRIPTION {
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
import gql from 'graphql-tag';
|
||||
import { WEBUI_UPDATE_STATUS } from '@/lib/graphql/Fragments';
|
||||
|
||||
// eslint-disable-next-line import/prefer-default-export
|
||||
export const WEBUI_UPDATE_SUBSCRIPTION = gql`
|
||||
${WEBUI_UPDATE_STATUS}
|
||||
subscription WEBUI_UPDATE_SUBSCRIPTION {
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
import gql from 'graphql-tag';
|
||||
import { FULL_UPDATER_STATUS } from '@/lib/graphql/Fragments';
|
||||
|
||||
// eslint-disable-next-line import/prefer-default-export
|
||||
export const UPDATER_SUBSCRIPTION = gql`
|
||||
${FULL_UPDATER_STATUS}
|
||||
subscription UPDATER_SUBSCRIPTION {
|
||||
|
||||
Reference in New Issue
Block a user