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
gRPC provides two mechanisms for handling optional parameters: Structs and FieldMasks. I couldn't find anywhere in documentation whether either of them are used for attributes that are specified as non-mandatory in Swagger. There doesn't seem to be any examples either.
Two main use-cases for this are PATCH and get?attrName=attrValue (find) operations, where you definitely want to distinguish between defined and undefined values, since searching by "name='John' && age = 0" is not the same as "name='John' && age = undefined"
The text was updated successfully, but these errors were encountered:
gRPC provides two mechanisms for handling optional parameters: Structs and FieldMasks. I couldn't find anywhere in documentation whether either of them are used for attributes that are specified as non-mandatory in Swagger. There doesn't seem to be any examples either.
Two main use-cases for this are PATCH and get?attrName=attrValue (find) operations, where you definitely want to distinguish between defined and undefined values, since searching by "name='John' && age = 0" is not the same as "name='John' && age = undefined"
The text was updated successfully, but these errors were encountered: