apollo-compiler 1.31.1

A compiler for the GraphQL query language.
Documentation
Error: type `Image` does not satisfy interface `Resource`: missing field `width`
    ╭─[ 0025_interface_definition_with_missing_transitive_fields.graphql:14:1 ]
    │
 14 │ ╭─▶ interface Image implements Resource & Node {
    ┆ ┆   
 17 │ ├─▶ }
    │ │      
    │ ╰────── add `width` field to this type
    │
    ├─[ 0025_interface_definition_with_missing_transitive_fields.graphql:14:1 ]
    │
 14 │ interface Image implements Resource & Node {
    │                            ────┬───  
    │                                ╰───── implementation of interface Resource declared here
    │
    ├─[ 0025_interface_definition_with_missing_transitive_fields.graphql:14:1 ]
    │
 11 │   width: Int
    │   ─────┬────  
    │        ╰────── `Resource.width` originally defined here
    │ 
    │ Help: An object or interface must declare all fields required by the interfaces it implements
────╯