Last active
December 10, 2021 05:03
-
-
Save manakuro/967c867b3214afb0f3c6e5eb398c03f9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type User interface { | |
... | |
List(ctx context.Context, after *model.Cursor, first *int, before *model.Cursor, last *int, where *model.UserWhereInput) (*model.UserConnection, error) | |
} | |
func (u *user) List(ctx context.Context, after *model.Cursor, first *int, before *model.Cursor, last *int, where *model.UserWhereInput) (*model.UserConnection, error) { | |
return u.userRepository.List(ctx, after, first, before, last, where) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment