File: extend_interface.graphql

package info (click to toggle)
rust-graphql-parser 0.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 588 kB
  • sloc: makefile: 2
file content (7 lines) | stat: -rw-r--r-- 147 bytes parent folder | download
1
2
3
4
5
6
7
extend interface Bar {
  two(argument: InputType!): Type
}

extend interface Foo implements IOne & ITwo {
  three(argument: [InputType!]!): Type
}