Giter Club home page Giter Club logo

Comments (4)

dreamcodez avatar dreamcodez commented on May 11, 2024

This should most likely be the job of the database adapter -- not sure..

from join-monster.

acarl005 avatar acarl005 commented on May 11, 2024

If your field depends on only a single property within a Postgres JSONB column, it may be a slight over-fetch to get the whole column instead of just that one property.

For now you can just make the column a dependency, and use the resolver to parse the JSON and get that property.

from join-monster.

naturalethic avatar naturalethic commented on May 11, 2024

My mysql adapter spits me a javascript object for my json fields, and I provide a type that simply passes the value through, like so:

const GraphQLJson = new GraphQLScalarType({
  name: 'Json',
  serialize(value) {
    return value
  },
  parseValue(value) {
    return value
  },
  parseLiteral(ast) {
    return ast.value
  },
})

You could have this parse/stringify if you adapter doesn't do that for you.

from join-monster.

acarl005 avatar acarl005 commented on May 11, 2024

The new sqlExpr property in v0.7.0 allows the interpolation of computed columns via raw SQL expressions. see this page in the docs.

Now something like this is possible:

fields: () => ({
  someJSONprop: {
    type: GraphQLString,
    sqlExpr: table => `${table}.json_column_name ->> 'propName'`
  }
})

from join-monster.

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.