Error: interface `A` declares that it implements `B`, but to do so it must also implement `A`
   ╭─[0091_recursive_interface_definition.graphql:1:1]
   │
 1 │ ╭─▶ interface A implements B {
   ┆ ┆   
 3 │ ├─▶ }
   │ │       
   │ ╰─────── A must also be implemented here
 4 │     interface B implements A {
   │                            ┬  
   │                            ╰── implementation of A declared by B here
───╯
Error: interface `B` declares that it implements `A`, but to do so it must also implement `B`
   ╭─[0091_recursive_interface_definition.graphql:4:1]
   │
 1 │     interface A implements B {
   │                            ┬  
   │                            ╰── implementation of B declared by A here
   │ 
 4 │ ╭─▶ interface B implements A {
   ┆ ┆   
 6 │ ├─▶ }
   │ │       
   │ ╰─────── B must also be implemented here
───╯
Error: fragment `recursive` with type condition `A` cannot be applied to `A`
    ╭─[0091_recursive_interface_definition.graphql:15:9]
    │
  1 │ ╭───▶ interface A implements B {
    ┆ ┆     
  3 │ ├───▶ }
    │ │         
    │ ╰───────── type condition `A` is not assignable to this type
    │ 
  7 │   ╭─▶ fragment recursive on A {
    ┆   ┆   
  9 │   ├─▶ }
    │   │       
    │   ╰─────── fragment declared with type condition `A` here
    │ 
 15 │         get { ...recursive }
    │               ──────┬─────  
    │                     ╰─────── fragment `recursive` cannot be applied
────╯

