type Example {
first: String
second: String!
third: [String]
fourth: [String!]
fifth: [String!]!
}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import clsx from 'rn-clsx'; | |
export const spacing = { | |
xs: 4, | |
sm: 8, | |
md: 16, | |
lg: 24, | |
xlg: 32, | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState, createContext } from "react" | |
import { useTranslation } from "react-i18next" | |
export const AppProvider = createContext() | |
export const Provider = ({ children }) => { | |
const { i18n } = useTranslation() | |
const [cookie, setCookie] = useState(false) | |
const [language, setLanguage] = useState("ENGLISH") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query IntrospectionQuery { | |
__schema { | |
queryType { name } | |
mutationType { name } | |
subscriptionType { name } | |
types { | |
...FullType | |
} | |
directives { |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": { | |
"__schema": { | |
"queryType": { | |
"name": "Query" | |
}, | |
"mutationType": { | |
"name": "Mutation" | |
}, | |
"subscriptionType": null, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"defaultSeverity": "error", | |
"rules": { | |
"adjacent-overload-signatures": true, | |
"align": true, | |
"array-type": true, | |
"arrow-parens": true, | |
"arrow-return-shorthand": true, | |
"await-promise": true, | |
"ban": true, |
Clone your fork.
git clone [email protected]:YOUR_USERNAME/FORKED_REPO.git
Add the remote upstream to git
git remote add upstream git://github.com/ORIGIN_USERNAME/ORIGIN_REPO.git