Skip to content

Commit

Permalink
update gql imports to use urql (#3582)
Browse files Browse the repository at this point in the history
  • Loading branch information
Forfold authored Jan 9, 2024
1 parent 643a36e commit eb40aa6
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { gql } from '@apollo/client'
import { gql } from 'urql'
import { makeQuerySelect } from './QuerySelect'

const query = gql`
Expand Down
2 changes: 1 addition & 1 deletion web/src/app/selection/IntegrationKeySelect.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { gql } from '@apollo/client'
import { gql } from 'urql'
import { IntegrationKey } from '../../schema'
import { makeQuerySelect } from './QuerySelect'

Expand Down
2 changes: 1 addition & 1 deletion web/src/app/selection/LabelKeySelect.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { gql } from '@apollo/client'
import { gql } from 'urql'
import { makeQuerySelect } from './QuerySelect'

const query = gql`
Expand Down
2 changes: 1 addition & 1 deletion web/src/app/selection/LabelValueSelect.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { gql } from '@apollo/client'
import { gql } from 'urql'
import { makeQuerySelect } from './QuerySelect'

const query = gql`
Expand Down
2 changes: 1 addition & 1 deletion web/src/app/selection/RotationSelect.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { gql } from '@apollo/client'
import { gql } from 'urql'
import { makeQuerySelect } from './QuerySelect'

const query = gql`
Expand Down
2 changes: 1 addition & 1 deletion web/src/app/selection/ScheduleSelect.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { gql } from '@apollo/client'
import { gql } from 'urql'
import { makeQuerySelect } from './QuerySelect'

const query = gql`
Expand Down
2 changes: 1 addition & 1 deletion web/src/app/selection/ServiceSelect.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { gql } from '@apollo/client'
import { gql } from 'urql'
import { makeQuerySelect } from './QuerySelect'

const query = gql`
Expand Down
2 changes: 1 addition & 1 deletion web/src/app/selection/SlackChannelSelect.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { gql } from '@apollo/client'
import { gql } from 'urql'
import { makeQuerySelect } from './QuerySelect'

const query = gql`
Expand Down
2 changes: 1 addition & 1 deletion web/src/app/selection/TimeZoneSelect.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { gql } from '@apollo/client'
import { gql } from 'urql'
import { makeQuerySelect } from './QuerySelect'

const query = gql`
Expand Down
2 changes: 1 addition & 1 deletion web/src/app/selection/UserSelect.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { gql } from '@apollo/client'
import { gql } from 'urql'
import { makeQuerySelect } from './QuerySelect'

const query = gql`
Expand Down

0 comments on commit eb40aa6

Please sign in to comment.