Friday, May 28, 2021

mutation to delete data

 mutation for deleting an user:

add deleteUser mutation in the mutation fields.

complete schema/schema.js:

const graphql = require("graphql");
const axios = require("axios");
const { GraphQLObjectTypeGraphQLStringGraphQLIntGraphQLSchema,GraphQLList,GraphQLNonNull } = graphql;

const CompanyType = new GraphQLObjectType({
  name: "Company",
  fields:()=>( {
    id: { typeGraphQLString },
    name: { typeGraphQLString },
    description: { typeGraphQLString },
    users: {
      typenew GraphQLList(UserType),
      resolve(parentValue,args){
        return axios.get(`http://localhost:3000/companies/${parentValue.id}/users`)
          .then(res=>res.data);
      }
    }
  })
});

const UserType = new GraphQLObjectType({
  name: "User",
  fields:()=>( {
    id: { typeGraphQLString },
    firstName: { typeGraphQLString },
    age: { typeGraphQLInt },
    company: {
      typeCompanyType,
      resolve(parentValueargs) {
        //used when field names with database and here are different
        console.log(parentValueargs);
        return axios
          .get(`http://localhost:3000/companies/${parentValue.companyId}`)
          .then((res) => res.data);
      },
    },
  })
});

const RootQuery = new GraphQLObjectType({
  name: "RootQueryType",
  fields: {
    user: {
      type: UserType,
      args: { id: { type: GraphQLString } },
      resolve(parentValueargs) {
        return axios
          .get(`http://localhost:3000/users/${args.id}`)
          .then((resp=> resp.data);
      },
    },
    company:{
      type: CompanyType,
      args: {id: {type: GraphQLString}},
      resolve(parentValue,args){
        return axios.get(`http://localhost:3000/companies/${args.id}`)
        .then(resp=>resp.data);
      }
    }
  },
});


const mutation = new GraphQLObjectType({
  name: 'Mutation',
  fields: {
    addUser: {
      type: UserType,
      args: {
        firstName: {type: new GraphQLNonNull(GraphQLString)},
        age: {type: new GraphQLNonNull(GraphQLInt)},
        companyId:{type: GraphQLString}
      },
      resolve(parentValue,{firstName,age}){
        return axios.post('http://localhost:3000/users',{firstName,age})
        .then(res=>res.data);
      }
    },
    deleteUser: {
      type: UserType,
      args: {
        id: {type: new GraphQLNonNull(GraphQLString)}
      },
      resolve(parentValue,{id}){
        return axios.delete(`http://localhost:3000/users/${id}`)
        .then(res=>res.data);
      }
    }
  }
});

module.exports = new GraphQLSchema({
  query: RootQuery,
  mutation//mutation: mutation
});





And the mutation will return null, as json server will return the data after operation.

//graphql editor UI code
mutation{
  deleteUser(id"23"){
   id
 }
}

No comments:

Post a Comment