Skip to content

⬆️ Update dependency @omnigraph/openapi to ^0.108.0

Renovate requested to merge renovate/omnigraph-openapi-0.x into main

This MR contains the following updates:

Package Type Update Change
@omnigraph/openapi (source) devDependencies minor ^0.107.8 -> ^0.108.0

Release Notes

ardatan/graphql-mesh (@​omnigraph/openapi)

v0.108.22

Compare Source

Patch Changes

v0.108.21

Compare Source

Patch Changes

v0.108.20

Compare Source

Patch Changes

v0.108.19

Compare Source

Patch Changes

v0.108.18

Compare Source

Patch Changes

v0.108.17

Compare Source

Patch Changes

v0.108.16

Compare Source

Patch Changes

v0.108.15

Compare Source

Patch Changes
  • #​8289 c54e361 Thanks @​ardatan! - New option selectQueryOrMutationField to decide which field belongs to which root type explicitly.

    import { defineConfig } from '@​graphql-mesh/compose-cli'
    import loadGrpcSubgraph from '@​omnigraph/grpc'
    
    export const composeConfig = defineConfig({
      subgraphs: [
        {
          sourceHandler: loadGrpcSubgraph('MyGrpcApi', {
            /** .. **/
    
            // Prefix to collect Query method default: list, get
            prefixQueryMethod: ['list', 'get'],
    
            // Select certain fields as Query or Mutation
            // This overrides `prefixQueryMethod`
            selectQueryOrMutationField: [
              {
                // You can use a pattern matching with *
                fieldName: '*RetrieveMovies',
                type: 'Query'
              },
              // Or you can use a specific field name
              // This will make the field GetMovie available as a Mutation
              // Because it would be Query because of `prefixQueryMethod`
              {
                fieldName: 'GetMovie',
                type: 'Mutation'
              }
            ]
          })
        }
      ]
    })
  • Updated dependencies [5180b06, c54e361, f1b5e8e, 78c202e]:

v0.108.14

Compare Source

Patch Changes

v0.108.13

Compare Source

Patch Changes

v0.108.12

Compare Source

Patch Changes

v0.108.11

Compare Source

Patch Changes

v0.108.10

Compare Source

Patch Changes

v0.108.9

Compare Source

Patch Changes

v0.108.8

Compare Source

Patch Changes

v0.108.7

Compare Source

Patch Changes

v0.108.6

Compare Source

Patch Changes

v0.108.5

Compare Source

Patch Changes

v0.108.4

Compare Source

Patch Changes

v0.108.2

Compare Source

Patch Changes

v0.108.1

Compare Source

Patch Changes

v0.108.0

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this MR and you won't be reminded about this update again.


  • If you want to rebase/retry this MR, check this box

This MR has been generated by Renovate Bot.

Edited by Renovate

Merge request reports

Loading