Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
446 views
in Technique[技术] by (71.8m points)

apollo - How do you define a "constant" that can be used in queries?

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?

question from:https://stackoverflow.com/questions/65948396/how-do-you-define-a-constant-that-can-be-used-in-queries

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...