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
Sometimes you just care about a part of the input of the request. For example,
Input object: user: String, friends: List<User>, random: Number
pseudo-rules:
if user: "john" then return blah
if user: "laura"then return an error
In these cases I don't care about the friends and I can't predict the random number. I know that with strings you can use .* but it doesn't work with other types.
Would it be possible for the server to match like this?
The text was updated successfully, but these errors were encountered:
Hi, thanks again for your work :)
Sometimes you just care about a part of the input of the request. For example,
Input object:
user: String, friends: List<User>, random: Number
pseudo-rules:
user: "john"
then returnblah
user: "laura"
then return an errorIn these cases I don't care about the friends and I can't predict the
random
number. I know that with strings you can use.*
but it doesn't work with other types.Would it be possible for the server to match like this?
The text was updated successfully, but these errors were encountered: