I am trying to define queries that use default value for "minRows" as shown below.
query MyQuery1( $lastName: String, $minRows: Int = 2, ) query MyQuery2( $firstName: String, $minRows: Int = 2, )
In multiple places we are using "minRows: Int = 2" is there way to define this quantity "2" as a constant and reference this constant in all the queries?
2.1m questions
2.1m answers
60 comments
57.0k users