🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

@theconcurrent/graphiql-query-generator

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@theconcurrent/graphiql-query-generator

A GraphiQL plugin that automatically generates GraphQL operation queries based on specified resources, enhancing development productivity.

0.0.33
latest
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created

@theconcurrent/graphiql-query-generator

Table of Contents

Introduction

Getting Started

yarn add @theconcurrent/graphiql-query-generator
const config = {
  adminPath: 'admin',
  nodeRepresentatives: ['id'],
  resources: [
    {
      name: 'Announcement',
      list: {},
      show: {},
      create: { path: 'announcementCreate.announcement' },
      update: { path: 'announcementUpdate.announcement' },
      delete: { path: 'announcementDelete.announcement' },
    },
  ],
  collection: {
    dataPath: 'nodes',
    totalPath: 'totalCount',
    typeNameSuffix: 'Collection',
  },
};
# schema.graphql
type Query {
  admin: Admin
}

type Admin {
  user(id: ID): User
  userList: UserCollection!
}

type User {
  id: ID
  name: String
}

type UserCollection {
  nodes: [User!]
  totalCount: Int
}

input UserCreateInput {
  userInput: UserInput!
  clientMutationId: String
}

input UserInput {
  name: String
}

type UserCreatePayload {
  user: User!
  clientMutationId: String
}

type UserDeletePayload {
  user: User!
  clientMutationId: String
}

input UserDeleteInput {
  clientMutationId: String
  id: ID!
}

type UserUpdatePayload {
  user: User!
  clientMutationId: String
}

input UserUpdateInput {
  userInput: UserInput!
  clientMutationId: String
  id: ID!
}

type Mutation {
  userCreate(input: UserCreateInput!): UserCreatePayload
  userDelete(input: UserDeleteInput!): UserDeletePayload
  userUpdate(input: UserUpdateInput!): UserUpdatePayload
}

FAQs

Package last updated on 31 Dec 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts