@kiwicom/smart-faq
Version:
75 lines (69 loc) • 1.59 kB
JavaScript
/**
* @flow
*/
/* eslint-disable */
'use strict';
/*::
import type { ReaderFragment } from 'relay-runtime';
import type { FragmentReference } from "relay-runtime";
declare export opaque type FAQArticle_article$ref: FragmentReference;
declare export opaque type FAQArticle_article$fragmentType: FAQArticle_article$ref;
export type FAQArticle_article = {|
+id: string,
+originalId: string,
+title: ?string,
+perex: ?string,
+$refType: FAQArticle_article$ref,
|};
export type FAQArticle_article$data = FAQArticle_article;
export type FAQArticle_article$key = {
+$data?: FAQArticle_article$data,
+$fragmentRefs: FAQArticle_article$ref,
};
*/
const node/*: ReaderFragment*/ = {
"kind": "Fragment",
"name": "FAQArticle_article",
"type": "FAQArticle",
"metadata": null,
"argumentDefinitions": [],
"selections": [
{
"kind": "ScalarField",
"alias": null,
"name": "id",
"args": null,
"storageKey": null
},
{
"kind": "ScalarField",
"alias": "originalId",
"name": "id",
"args": [
{
"kind": "Literal",
"name": "opaque",
"value": false
}
],
"storageKey": "id(opaque:false)"
},
{
"kind": "ScalarField",
"alias": null,
"name": "title",
"args": null,
"storageKey": null
},
{
"kind": "ScalarField",
"alias": null,
"name": "perex",
"args": null,
"storageKey": null
}
]
};
// prettier-ignore
(node/*: any*/).hash = 'b1f7d3b2dcd6ed1efa04c8bc45048eb4';
module.exports = node;