Skip to content

Releases: ardatan/graphql-mesh

v1.0.5

12 Sep 17:48
6bab4d1
Compare
Choose a tag to compare
chore(deps): update dependency @types/jest to v29.5.13 (#7677)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

September 12, 2024

12 Sep 17:45
6bab4d1
Compare
Choose a tag to compare

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

  • #7676
    adc3293
    Thanks @ardatan! - If the target hoisted field is a new field name
    that doesn't exist, create that field and keep the existing one;

    createHoistFieldTransform({
      mapping: [
        {
          typeName: 'Query',
          pathConfig: ['users', 'results'],
          newFieldName: 'usersResults'
        }
      ]
    })
    type Query {
      users(limit: Int!, page: Int): UserSearchResult # Keep this
    + usersResults(limit: Int!, page: Int): [User!]! # Add a new one
    }
    
    scalar _HoistConfig
    
    type UserSearchResult {
      page: Int!
    }
    
    type User {
      id: ID!
      name: String!
    }

@graphql-mesh/[email protected]

Patch Changes

  • #7676
    adc3293
    Thanks @ardatan! - If the target hoisted field is a new field name
    that doesn't exist, create that field and keep the existing one;

    createHoistFieldTransform({
      mapping: [
        {
          typeName: 'Query',
          pathConfig: ['users', 'results'],
          newFieldName: 'usersResults'
        }
      ]
    })
    type Query {
      users(limit: Int!, page: Int): UserSearchResult # Keep this
    + usersResults(limit: Int!, page: Int): [User!]! # Add a new one
    }
    
    scalar _HoistConfig
    
    type UserSearchResult {
      page: Int!
    }
    
    type User {
      id: ID!
      name: String!
    }

@graphql-hive/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

@graphql-mesh/[email protected]

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

v1.0.4

11 Sep 22:00
d388c86
Compare
Choose a tag to compare
chore(release): update monorepo packages versions (#7669)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

v1.0.3

11 Sep 18:06
74bf8fe
Compare
Choose a tag to compare
chore(release): update monorepo packages versions (#7665)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

v1.0.2

11 Sep 12:57
12dd3da
Compare
Choose a tag to compare
chore(release): update monorepo packages versions (#7662)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

v1.0.1

11 Sep 11:41
Compare
Choose a tag to compare
chore(release): update monorepo packages versions (#7660)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

September 11, 2024

11 Sep 21:57
d388c86
Compare
Choose a tag to compare

@graphql-mesh/[email protected]

Patch Changes

@graphql-hive/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

@graphql-mesh/[email protected]

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

September 11, 2024

11 Sep 18:00
74bf8fe
Compare
Choose a tag to compare

@graphql-mesh/[email protected]

Patch Changes

@graphql-hive/[email protected]

Patch Changes

@graphql-mesh/[email protected]

@graphql-mesh/[email protected]

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

September 11, 2024

11 Sep 12:54
12dd3da
Compare
Choose a tag to compare

@graphql-mesh/[email protected]

Patch Changes

@graphql-hive/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

@graphql-mesh/[email protected]

Patch Changes

September 11, 2024

11 Sep 11:38
Compare
Choose a tag to compare

@graphql-hive/[email protected]

Patch Changes

  • dae87f5
    Thanks @ardatan! - Add missing @graphql-hive/gateway package to
    the Docker bundle