Giter Club home page Giter Club logo

resgraph's Issues

Improve interface type codegen

  1. Split codegenned types for interfaces into separate files
  2. Ensure inference can work as intended by moving one of the generated types into a sub module (they're very similar, so type inference clashes for them)

Unclear error message when __generated__ folder is missing

If the folder defined in resgraph.json doesn't exist, ResGraph fails to compile.

This is the error message if /src/schema/__generated__ doesn't exist:

Error: Command failed: /path/to/repo/node_modules/resgraph/bin/darwin/resgraph.exe generate-schema
  /path/to/repo/src  /path/to/repo/src/schema/__generated__ true

This error could be a common mistake for new users and the message could be improved

Input unions?

Something sorely missing from GraphQL is input unions. While we won't extend the GraphQL language ourselves, we could potentially implement input unions server side:

@gql.inputUnion
type timePeriod = Preset({datePreset: datePreset}) | Dates({from: timestamp, to: timestamp})

@gql.field
let data = (_: query, ~timePeriod) => {
  getDataByTimePeriod(timePeriod)
}
type Query {
  data(datePreset: DatePreset, from: Timestamp, to: Timestamp): DataForPeriod
}

We'd have a code generated layer in each resolver using a input union that automatically throws if the argument configuration isn't correct.

Type creators?

This is about as magical as I dare make something, but imagine this (pageInfo definition omitted):

@gql.type type user = {name: string}

@gql.typeCreator
type edge<'node> = {
  @gql.field cursor: option<string>,
  @gql.field node: option<'node>,
}

@gql.typeCreator
type connection<'edge> = {
  @gql.field pageInfo: pageInfo,
  @gq.field edges: option<array<option<edge>>>,
}

@gql.type
type userEdge = edge<user>

@gql.type
type userConnection = connection<userEdge>

Generating this:

type User {
  name: String!
}

type UserEdge {
  cursor: String
  node: User
}

type UserConnection {
  pageInfo: PageInfo!
  edges: [UserEdge]
}

Essentially allowing records to act as "templates" which you can generate types from, that would then also leverage any instantiated type parameters.

Would solve for example making good connection helpers, and allow you to write functions operating on connection<'node> directly.

Example is for connections, but can probably be generalized.

M1 binary

Either build and commit to repo for each change, or wait for GH runners to support building them.

Clean up unused OCaml code

There's an absolute ton of unused OCaml code since I started out by copying the entire editor tooling repo. Most will be possible to clean out.

Document and examplify Node interface

Would be nice to have a good set of examples for how to implement the Node interface, which is 1st class in ResGraph. Preferably with a few helpers for creating good, short, URL friendly ID:s. cc @cometkim (message pack etc)

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.