Code Monkey home page Code Monkey logo

standard-todos's Introduction

standard-todos

LimeGreenJS-enabled standard todos example

Graphcool schema

At first, you need to enable Email-Password Auth integration.

type Task @model {
  id: ID! @isUnique
  createdAt: DateTime!
  title: String!
  description: String
  private: Boolean
  owner: User @relation(name: "TaskOnUser")
}

type File @model {
  contentType: String!
  createdAt: DateTime!
  id: ID! @isUnique
  name: String!
  secret: String! @isUnique
  size: Int!
  updatedAt: DateTime!
  url: String! @isUnique
}

type User @model {
  createdAt: DateTime!
  id: ID! @isUnique
  updatedAt: DateTime!
  email: String @isUnique
  password: String
  tasks: [Task!]! @relation(name: "TaskOnUser")
}

Graphcool permission queries for Task

Read permission for Everyone

query ($node_id: ID!) {
  SomeTaskExists(
    filter: {
      id: $node_id
      OR: [{
        private: false
      }, {
        private: null
      }]
    }
  )
}

Update/Delete permisson for Everyone

query ($node_id: ID!) {
  SomeTaskExists(
    filter: {
      id: $node_id
      owner: null
    }
  )
}

Read permission for Authenticated

query ($node_id: ID!, $user_id: ID!) {
  SomeTaskExists(
    filter: {
      id: $node_id
      owner: {
        id: $user_id
      }
    }
  )
}

Update/Delete permission for Authenticated

query ($node_id: ID!, $user_id: ID!) {
  SomeTaskExists(
    filter: {
      id: $node_id
      owner: {
        id: $user_id
      }
    }
  )
}

standard-todos's People

Contributors

dai-shi avatar jsdelivrbot avatar

Stargazers

Andrejs Agejevs avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.