You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val allStartedGames = myModule.query<AllStartedGames>
Maybe the interface (AllStartedGames) could somehow define the return type of the Query? If so we probably need to introduce a Query interface such as Query<T> where T is the return type.
The text was updated successfully, but these errors were encountered:
then use it in e.g. rest API:
We could also create queries with types:
and then:
Maybe the interface (
AllStartedGames
) could somehow define the return type of the Query? If so we probably need to introduce aQuery
interface such asQuery<T>
whereT
is the return type.The text was updated successfully, but these errors were encountered: