LastDragon-ru / lara-asp

Awesome Set of Packages for Laravel
MIT License
11 stars 1 forks source link

Interface support while types transformation #15

Closed LastDragon-ru closed 1 year ago

LastDragon-ru commented 2 years ago

For the following example, the interface I will not be updated and the schema will be invalid.

interface I {
    contacts (
        where: ContactsQuery @searchBy
        order: ContactsSort @sortBy
    ): [Contact!]!
}

type A implements I {
    contacts (
        where: ContactsQuery @searchBy
        order: ContactsSort @sortBy
    ): [Contact!]!
}