Skip to content

Commit 647a20c

Browse files
committed
New translations best-practices.mdx (Hindi)
1 parent 73cf172 commit 647a20c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

website/src/pages/hi/subgraphs/querying/best-practices.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ query listTokens {
219219
### एक ही क्वेरी का उपयोग करके कई रिकॉर्ड्स का अनुरोध करें
220220

221221
डिफ़ॉल्ट रूप से, Subgraphs में एक record के लिए singular entity होती है। कई records प्राप्त करने के लिए, plural entities और filter का उपयोग करें:
222-
where: {id_in:[X,Y,Z]} या where: {volume_gt:100000}
222+
`where: {id_in:[X,Y,Z]}` या `where: {volume_gt:100000}`
223223

224224
अप्रभावी क्वेरी करने का उदाहरण:
225225

@@ -310,7 +310,7 @@ const { result: { tokens, counters } } = execute(query)
310310

311311
GraphQL क्वेरी लिखने में सहायक एक सुविधा है GraphQL Fragment।
312312

313-
निम्नलिखित क्वेरी को देखने पर, आप देखेंगे कि कुछ फ़ील्ड्स कई चयन-सेट्स ({ ... }) में दोहराए गए हैं:
313+
निम्नलिखित क्वेरी को देखने पर, आप देखेंगे कि कुछ फ़ील्ड्स कई चयन-सेट्स (`{ ... }`) में दोहराए गए हैं:
314314

315315
```graphql
316316
query {

0 commit comments

Comments
 (0)