Skip to content

v0.1.19

Compare
Choose a tag to compare
@ardatan ardatan released this 30 May 11:45
· 6244 commits to master since this release

Contact us here for help, more necessary open source tools and Enterprise support
or Chat with us on discord

  • Add option to authenticate gRPC requests (#497) - Thanks @rufman !
  • fix(filterSchema): filter out a type with all fields (#495)
  • Improve SDK (#504)
    • No need to have operations, Mesh can generate those for you (#427)
    • Add projectionOptions to in-context SDK;
// additional-resolvers.js
module.exports = {
   Foo: (foo, args, context, info) => context.AnotherSource.api.bar({
     fooId: foo.id
  }, {
      fields: {
         someField: {
            someOtherField: true,
         }
      },
      // or
      depth: 2, // Depth limit of auto generated queries
      selectionSet: `{ someFields { someOtherFields } }`, // Custom SDK selection set (experimental)
   })
}