LastDragon-ru / lara-asp

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

Exported type should be on the top #100

Closed LastDragon-ru closed 1 year ago

LastDragon-ru commented 1 year ago

See #99, probably it should be (as it was previously, so this is more regression rather than feat)

type Query {
    getUsers(
        filters: UserFilter
    ): [User]
}

input UserFilter {
    name: String
}

type User {
    id: ID
    name: String
}