github ardatan/graphql-tools @graphql-tools/utils@7.2.5

latest releases: release-1726086017332, @graphql-tools/federation@2.2.10, release-1724948218474...
3 years ago

Patch Changes

  • 4fc05eb: Fixes the handling of repeatable directives in the getDirectives method. Previously repeatable directives were nested and duplicated. They will now return as a flat array map:

    @mydir(arg: "first") @mydir(arg: "second")

    translates into:

    {
      mydir: [{ arg: 'first' }, { arg: 'second' }];
    }

Don't miss a new graphql-tools release

NewReleases is sending notifications on new releases.