mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-04-06 01:25:31 +00:00
* queries * test block users & small refactor on the resolver * require 92% coverage (+2%) * update according to review * use cypher instead of neode
12 lines
141 B
TypeScript
12 lines
141 B
TypeScript
import gql from 'graphql-tag'
|
|
|
|
export const blockedUsers = gql`
|
|
query {
|
|
blockedUsers {
|
|
id
|
|
name
|
|
isBlocked
|
|
}
|
|
}
|
|
`
|