This repository was archived by the owner on Mar 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathAbout_artist.graphql.ts
More file actions
106 lines (102 loc) · 2.16 KB
/
About_artist.graphql.ts
File metadata and controls
106 lines (102 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* tslint:disable */
import { ConcreteFragment } from "relay-runtime";
export type About_artist = {
readonly has_metadata: boolean | null;
readonly is_display_auction_link: boolean | null;
readonly id: string;
readonly related_artists: ReadonlyArray<({
}) | null> | null;
readonly articles: ReadonlyArray<({
}) | null> | null;
};
const node: ConcreteFragment = (function(){
var v0 = {
"kind": "ScalarField",
"alias": null,
"name": "__id",
"args": null,
"storageKey": null
};
return {
"kind": "Fragment",
"name": "About_artist",
"type": "Artist",
"metadata": null,
"argumentDefinitions": [],
"selections": [
{
"kind": "ScalarField",
"alias": null,
"name": "has_metadata",
"args": null,
"storageKey": null
},
{
"kind": "ScalarField",
"alias": null,
"name": "is_display_auction_link",
"args": null,
"storageKey": null
},
{
"kind": "ScalarField",
"alias": null,
"name": "id",
"args": null,
"storageKey": null
},
{
"kind": "FragmentSpread",
"name": "Biography_artist",
"args": null
},
{
"kind": "LinkedField",
"alias": "related_artists",
"name": "artists",
"storageKey": "artists(size:16)",
"args": [
{
"kind": "Literal",
"name": "size",
"value": 16,
"type": "Int"
}
],
"concreteType": "Artist",
"plural": true,
"selections": [
{
"kind": "FragmentSpread",
"name": "RelatedArtists_artists",
"args": null
},
v0
],
"idField": "__id"
},
{
"kind": "LinkedField",
"alias": null,
"name": "articles",
"storageKey": null,
"args": null,
"concreteType": "Article",
"plural": true,
"selections": [
{
"kind": "FragmentSpread",
"name": "Articles_articles",
"args": null
},
v0
],
"idField": "__id"
},
v0
],
"idField": "__id"
};
})();
(node as any).hash = '0d92b625a9f137deef4539f44df5d64c';
export default node;