packages feed

morpheus-graphql 0.23.0 → 0.24.0

raw patch · 7 files changed

+18/−16 lines, 7 filesdep ~morpheus-graphql-appdep ~morpheus-graphql-code-gendep ~morpheus-graphql-core

Dependency ranges changed: morpheus-graphql-app, morpheus-graphql-code-gen, morpheus-graphql-core, morpheus-graphql-server, morpheus-graphql-subscriptions, morpheus-graphql-tests

Files

morpheus-graphql.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           morpheus-graphql-version:        0.23.0+version:        0.24.0 synopsis:       Morpheus GraphQL description:    Build GraphQL APIs with your favourite functional language! category:       web, graphql@@ -258,10 +258,10 @@     , base >=4.7.0 && <5.0.0     , bytestring >=0.10.4 && <0.12.0     , containers >=0.4.2.1 && <0.7.0-    , morpheus-graphql-app >=0.23.0 && <0.24.0-    , morpheus-graphql-code-gen >=0.23.0 && <0.24.0-    , morpheus-graphql-core >=0.23.0 && <0.24.0-    , morpheus-graphql-server >=0.23.0 && <0.24.0+    , morpheus-graphql-app >=0.24.0 && <0.25.0+    , morpheus-graphql-code-gen >=0.24.0 && <0.25.0+    , morpheus-graphql-core >=0.24.0 && <0.25.0+    , morpheus-graphql-server >=0.24.0 && <0.25.0     , mtl >=2.0.0 && <3.0.0     , relude >=0.3.0 && <2.0.0     , template-haskell >=2.0.0 && <3.0.0@@ -298,12 +298,12 @@     , bytestring >=0.10.4 && <0.12.0     , containers >=0.4.2.1 && <0.7.0     , morpheus-graphql-    , morpheus-graphql-app >=0.23.0 && <0.24.0-    , morpheus-graphql-code-gen >=0.23.0 && <0.24.0-    , morpheus-graphql-core >=0.23.0 && <0.24.0-    , morpheus-graphql-server >=0.23.0 && <0.24.0-    , morpheus-graphql-subscriptions >=0.23.0 && <0.24.0-    , morpheus-graphql-tests >=0.23.0 && <0.24.0+    , morpheus-graphql-app >=0.24.0 && <0.25.0+    , morpheus-graphql-code-gen >=0.24.0 && <0.25.0+    , morpheus-graphql-core >=0.24.0 && <0.25.0+    , morpheus-graphql-server >=0.24.0 && <0.25.0+    , morpheus-graphql-subscriptions >=0.24.0 && <0.25.0+    , morpheus-graphql-tests >=0.24.0 && <0.25.0     , mtl >=2.0.0 && <3.0.0     , relude >=0.3.0 && <2.0.0     , tasty >=0.1.0 && <1.5.0
test/Feature/Holistic/holistic/introspection/interface/response.json view
@@ -1,8 +1,7 @@ {   "data": {     "person": {-      "name": "test Person Name",-      "__typename": "User"+      "name": "test Person Name"     },     "interface": {       "kind": "INTERFACE",
test/Feature/Holistic/holistic/selection/mergeUnionSelection/response.json view
@@ -6,8 +6,7 @@       "email2": "",       "address": {         "city": ""-      },-      "__typename": "User"+      }     }   } }
test/Feature/NamedResolvers/tests/entities/query.gql view
@@ -1,6 +1,7 @@ query {   entities {     ... on Realm {+      __typename       name       owner {         name@@ -14,6 +15,7 @@       }     }     ... on Deity {+      __typename       name       power     }
test/Feature/NamedResolvers/tests/entity-by-id/query.gql view
@@ -1,11 +1,13 @@ query {   zeus: entity(id: "zeus") {+    __typename     ... on Deity {       name       power     }   }   olympus: entity(id: "olympus") {+    __typename     ... on Realm {       name       owner {
test/Feature/NamedResolvers/tests/entity-ext-by-id/query.gql view
@@ -1,6 +1,7 @@ query {   zeus: entity(id: "zeus") {     ... on Deity {+      __typename       name       power     }
test/Feature/NamedResolvers/tests/entity-ext-by-id/response.json view
@@ -6,7 +6,6 @@       "power": ["Thunderbolt"]     },     "olympus": {-      "__typename": "Realm",       "name": "Mount Olympus",       "owner": {         "name": "Zeus",