Last active
December 4, 2020 11:14
-
-
Save xperiandri/841645a05b2b22a95412cf0ca933717f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let InputRegistriCultureType = | |
Define.InputObject<RegistriCulture> | |
(name = "InputCulture", | |
fields = | |
[ Define.Input ("kind" , String , description = "A kind of book culture: native or translated") | |
Define.Input ("culture", CultureInfoType, description = "A culture code of a book") ]) | |
// C# | |
// Define.Input (name: "kind", type: String, defaultValue: null, description: "A kind of book culture: native or translated") | |
// Ошибка | |
// Define.Input ("kind", String, "A kind of book culture: native or translated") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment