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
سيتعين عليك إضافة `!`لعضو من نوع القائمة ، مثل هذا:
501
+
You'll have to add an `!`to the member of the List type, like this:
470
502
471
503
```graphql
472
504
typeSomething @entity {
473
-
id: ID!
505
+
id: Bytes!
474
506
}
475
507
476
508
typeMyEntity @entity {
477
-
id: ID!
509
+
id: Bytes!
478
510
invalidField: [Something!]! # valid
479
511
}
480
512
```
481
513
482
-
هذا التغير بسبب اختلافات ال nullabilityبين إصداراتAssemblyScriptوهو مرتبط بملف`src/generated/schema.ts`(هذا هو المسار الافتراضي ، وربما تكون قد غيرت هذا).
514
+
This changed because of nullability differences between AssemblyScript versions, and it's related to the `src/generated/schema.ts`file (default path, you might have changed this).
0 commit comments