Skip to content

Instantly share code, notes, and snippets.

View Abdulzeez403's full-sized avatar
💭
focus

Abdulazeez Sodiq Abdulzeez403

💭
focus
View GitHub Profile
@Abdulzeez403
Abdulzeez403 / .eslintrc.js
Created October 29, 2023 11:59 — forked from dorfo-dev/.eslintrc.js
Nestjs config eslint and prettier
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/recommended',
'prettier/@typescript-eslint',

GraphQL Queries & Mutations

These are the GraphQL queries and mutations for the YouTube course.

Get names of all clients

{
  clients {
    name
 }