fragment-dev 1.4.3 → 1.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/fragment.schema.json +30 -30
- data/lib/fragment_client/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fba379d2afa329df6d7a6899230d49f116aa529322d2f863b4ae07c70f477291
|
|
4
|
+
data.tar.gz: 32dbc1ed33be11cf4ccee9cdce56cf5a83ad100864888275e8a70c200e9e172d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 31b45007b1df79ed757d0fb81b6788c6eec2bc5fee982830b35260ce17f652a76482e0d53beb3064e978aa162c3a7e5bcf956f5c729befc9163ebba6c3649c89
|
|
7
|
+
data.tar.gz: 5e4c91be7816001dc94d4100efe9d96cc81e715f3edc4967e297e6ec228b1ebeac01b1461562af2d8abb83c0a3bfb2bcd213bcb2fdabfa59993c45bc43d8fff2
|
data/lib/fragment.schema.json
CHANGED
|
@@ -16887,6 +16887,28 @@
|
|
|
16887
16887
|
}
|
|
16888
16888
|
],
|
|
16889
16889
|
"directives": [
|
|
16890
|
+
{
|
|
16891
|
+
"name": "deprecated",
|
|
16892
|
+
"description": "Marks an element of a GraphQL schema as no longer supported.",
|
|
16893
|
+
"locations": [
|
|
16894
|
+
"FIELD_DEFINITION",
|
|
16895
|
+
"ENUM_VALUE",
|
|
16896
|
+
"ARGUMENT_DEFINITION",
|
|
16897
|
+
"INPUT_FIELD_DEFINITION"
|
|
16898
|
+
],
|
|
16899
|
+
"args": [
|
|
16900
|
+
{
|
|
16901
|
+
"name": "reason",
|
|
16902
|
+
"description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).",
|
|
16903
|
+
"type": {
|
|
16904
|
+
"kind": "SCALAR",
|
|
16905
|
+
"name": "String",
|
|
16906
|
+
"ofType": null
|
|
16907
|
+
},
|
|
16908
|
+
"defaultValue": "\"No longer supported\""
|
|
16909
|
+
}
|
|
16910
|
+
]
|
|
16911
|
+
},
|
|
16890
16912
|
{
|
|
16891
16913
|
"name": "include",
|
|
16892
16914
|
"description": "Directs the executor to include this field or fragment only when the `if` argument is true.",
|
|
@@ -16912,6 +16934,14 @@
|
|
|
16912
16934
|
}
|
|
16913
16935
|
]
|
|
16914
16936
|
},
|
|
16937
|
+
{
|
|
16938
|
+
"name": "oneOf",
|
|
16939
|
+
"description": "Requires that exactly one field must be supplied and that field must not be `null`.",
|
|
16940
|
+
"locations": [
|
|
16941
|
+
"INPUT_OBJECT"
|
|
16942
|
+
],
|
|
16943
|
+
"args": []
|
|
16944
|
+
},
|
|
16915
16945
|
{
|
|
16916
16946
|
"name": "skip",
|
|
16917
16947
|
"description": "Directs the executor to skip this field or fragment when the `if` argument is true.",
|
|
@@ -16937,36 +16967,6 @@
|
|
|
16937
16967
|
}
|
|
16938
16968
|
]
|
|
16939
16969
|
},
|
|
16940
|
-
{
|
|
16941
|
-
"name": "deprecated",
|
|
16942
|
-
"description": "Marks an element of a GraphQL schema as no longer supported.",
|
|
16943
|
-
"locations": [
|
|
16944
|
-
"FIELD_DEFINITION",
|
|
16945
|
-
"ENUM_VALUE",
|
|
16946
|
-
"ARGUMENT_DEFINITION",
|
|
16947
|
-
"INPUT_FIELD_DEFINITION"
|
|
16948
|
-
],
|
|
16949
|
-
"args": [
|
|
16950
|
-
{
|
|
16951
|
-
"name": "reason",
|
|
16952
|
-
"description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).",
|
|
16953
|
-
"type": {
|
|
16954
|
-
"kind": "SCALAR",
|
|
16955
|
-
"name": "String",
|
|
16956
|
-
"ofType": null
|
|
16957
|
-
},
|
|
16958
|
-
"defaultValue": "\"No longer supported\""
|
|
16959
|
-
}
|
|
16960
|
-
]
|
|
16961
|
-
},
|
|
16962
|
-
{
|
|
16963
|
-
"name": "oneOf",
|
|
16964
|
-
"description": "Requires that exactly one field must be supplied and that field must not be `null`.",
|
|
16965
|
-
"locations": [
|
|
16966
|
-
"INPUT_OBJECT"
|
|
16967
|
-
],
|
|
16968
|
-
"args": []
|
|
16969
|
-
},
|
|
16970
16970
|
{
|
|
16971
16971
|
"name": "specifiedBy",
|
|
16972
16972
|
"description": "Exposes a URL that specifies the behavior of this scalar.",
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fragment-dev
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- fragment
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: 2.2.5
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version:
|
|
22
|
+
version: '3.0'
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: 2.2.5
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version:
|
|
32
|
+
version: '3.0'
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: graphql-client
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|