Query to Search for an Item with Apollo
The last time was to get list of todo from Apollo. This time I am going to add task search functionality by id.
Code
const { ApolloServer, gql } = require('apollo-server');
const typeDefs = gql`
type Task {
id: ID!
name: String!
isAct...
senzu.hashnode.dev2 min read