Skip to content

Commit

Permalink
bring back OptObjectIdTaggedField in QueryFieldHelpers
Browse files Browse the repository at this point in the history
  • Loading branch information
SakulK committed Feb 2, 2024
1 parent 89426bc commit 1182bdc
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ trait QueryFieldHelpers[Meta] extends NamesResolver {
): ObjectIdTaggedField[Tag, Meta] =
named(name)(new ObjectIdTaggedField[Tag, Meta](_, this))

protected def OptObjectIdTaggedField[Tag](
name: String
): OptObjectIdTaggedField[Tag, Meta] =
named(name)(new OptObjectIdTaggedField[Tag, Meta](_, this))

protected def OptObjectIdField(
name: String
): OptObjectIdField[Meta] =
Expand Down

0 comments on commit 1182bdc

Please sign in to comment.