mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-03-01 12:44:28 +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
158 B
TypeScript
12 lines
158 B
TypeScript
import gql from 'graphql-tag'
|
|
|
|
export const blockUser = gql`
|
|
mutation ($id: ID!) {
|
|
blockUser(id: $id) {
|
|
id
|
|
name
|
|
isBlocked
|
|
}
|
|
}
|
|
`
|