mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-03-01 12:44:28 +00:00
12 lines
145 B
TypeScript
12 lines
145 B
TypeScript
import { gql } from 'graphql-tag'
|
|
|
|
export const blockedUsers = gql`
|
|
query {
|
|
blockedUsers {
|
|
id
|
|
name
|
|
isBlocked
|
|
}
|
|
}
|
|
`
|