mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-25 14:26:08 +03:00
8747ff8954
This RFC adds a new form of `StringValue`, the multi-line string, similar to that found in Python and Scala. A multi-line string starts and ends with a triple-quote: ``` """This is a triple-quoted string and it can contain multiple lines""" ``` Multi-line strings are useful for typing literal bodies of text where new lines should be interpretted literally. In fact, the only escape sequence used is `\"""` and `\` is otherwise allowed unescaped. This is beneficial when writing documentation within strings which may reference the back-slash often: ``` """ In a multi-line string \n and C:\\ are unescaped. """ ``` The primary value of multi-line strings are to write long-form input directly in query text, in tools like GraphiQL, and as a prerequisite to another pending RFC to allow docstring style documentation in the Schema Definition Language. Ref: graphql/graphql-js#926
82 lines
1.6 KiB
GraphQL
82 lines
1.6 KiB
GraphQL
# Copyright (c) 2015-present, Facebook, Inc.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
schema {
|
|
query: QueryType
|
|
mutation: MutationType
|
|
}
|
|
|
|
type Foo implements Bar {
|
|
one: Type
|
|
two(argument: InputType!): Type
|
|
three(argument: InputType, other: String): Int
|
|
four(argument: String = "string"): String
|
|
five(argument: [String] = ["string", "string"]): String
|
|
six(argument: InputType = {key: "value"}): Type
|
|
seven(argument: Int = null): Type
|
|
}
|
|
|
|
type AnnotatedObject @onObject(arg: "value") {
|
|
annotatedField(arg: Type = "default" @onArg): Type @onField
|
|
}
|
|
|
|
interface Bar {
|
|
one: Type
|
|
four(argument: String = "string"): String
|
|
}
|
|
|
|
interface AnnotatedInterface @onInterface {
|
|
annotatedField(arg: Type @onArg): Type @onField
|
|
}
|
|
|
|
union Feed = Story | Article | Advert
|
|
|
|
union AnnotatedUnion @onUnion = A | B
|
|
|
|
union AnnotatedUnionTwo @onUnion = | A | B
|
|
|
|
scalar CustomScalar
|
|
|
|
scalar AnnotatedScalar @onScalar
|
|
|
|
enum Site {
|
|
DESKTOP
|
|
MOBILE
|
|
}
|
|
|
|
enum AnnotatedEnum @onEnum {
|
|
ANNOTATED_VALUE @onEnumValue
|
|
OTHER_VALUE
|
|
}
|
|
|
|
input InputType {
|
|
key: String!
|
|
answer: Int = 42
|
|
}
|
|
|
|
input AnnotatedInput @onInputObjectType {
|
|
annotatedField: Type @onField
|
|
}
|
|
|
|
extend type Foo {
|
|
seven(argument: [String]): Type
|
|
}
|
|
|
|
extend type Foo @onType {}
|
|
|
|
type NoFields {}
|
|
|
|
directive @skip(if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
|
|
|
|
directive @include(if: Boolean!)
|
|
on FIELD
|
|
| FRAGMENT_SPREAD
|
|
| INLINE_FRAGMENT
|
|
|
|
directive @include2(if: Boolean!) on
|
|
| FIELD
|
|
| FRAGMENT_SPREAD
|
|
| INLINE_FRAGMENT
|