Giter Site home page Giter Site logo

Comments (5)

marcosvega91 avatar marcosvega91 commented on May 17, 2024 1

beautiful

from data.

kettanaito avatar kettanaito commented on May 17, 2024 1

which should already be optional in any model method:

db.user.findMany({
  which: {}
})

When provided with an empty object, querying would be permissive and all records would pass the predicate.

from data.

kettanaito avatar kettanaito commented on May 17, 2024

This may also support generating GraphQL handlers.

db.user.toHandlers('graphql')

graphql.query('GetUser')
graphql.query('GetUsers')
graphql.mutation('UpdateUser')
graphql.mutation('DeleteUser')

Let's refine this in a separate issue.

from data.

kettanaito avatar kettanaito commented on May 17, 2024

REST API route handlers

Given this model:

factory({
  user: {
    id: primaryKey(random.uuid),
    posts: manyOf('post'),
  },
  post: {
    id: primaryKey(random.uuid),
    title: random.words,
  },
})

The following REST API request handlers should be generated:

GET

// Returns all "user" records.
rest.get('/users', (req, res, ctx) => {
  const take = req.url.searchParams.get('take')
  const offset = req.url.searchParams.get('offset')
  const cursor = req.url.searchParams.get('cursor')

  const allUsers =
    ? db.user.findMany({
        take,
        offset,
        cursor,
      })
    : db.user.getAll()
  return res(ctx.json(allUsers))
})

// Returns a single "user" record.
rest.get('/user/:userId', (req, res, ctx) => {
  const user = db.user.findFirst({
    which: {
      id: { equals: req.params.userId },
    },
  })

  return res(ctx.json(user))
})

// Returns all "post" associated with this user.
rest.get('/user/:userId/posts/:postId', (req, res, ctx) => {
  const user = db.user.findFirst({
    which: {
      id: { equals: req.params.userId },
    },
  })

  return res(ctx.json(user.posts))
})

// Returns all "post" records.
rest.get('/posts', resolver)

// Returns a single "post" record.
rest.get('/posts/:postId', resolver)

POST

// Creates a new "user" record.
rest.post('/user', (req, res, ctx) => {
  const nextUser = db.user.create(req.body)
  return res(ctx.json(nextUser))
})

// Creates a new "post" record.
rest.post('/posts', resolver)

PUT

// Updates a single "user" record.
rest.put('/users/:userId', (req, res, ctx) => {
  const updatedUser = db.user.update({
    which: {
      id: { equals: req.params.userId },
    },
    data: req.body,
  })

  return res(ctx.json(updatedUser))
})

// Updates a single "post" record.
rest.put('/posts/:postId', resolver)

DELETE

// Deletes a single "user" record.
rest.delete('/users/:userId', (req, res, ctx) => {
  const deletedUser = db.user.delete({
    which: {
      id: { equals: req.params.userId },
    },
  })

  return res(ctx.json(deletedUser))
})

// Deletes a single "post" record.
rest.delete('/posts/:postId', resolver)

from data.

marcosvega91 avatar marcosvega91 commented on May 17, 2024

to support pagination is better to update findMany and add which as optional or add another method?

from data.

Related Issues (20)

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.