INPUT_OBJECT
PageInputType
# GraphQL Schema definition
1 input PageInputType { 4 2 # ids of authorization policies which should be checked 3 ID] : [ 6 5 String : 8 7 Int : 10 9 String : 12 11 Boolean : 14 13 PageFormat : 16 15 PageHandler : 19 17 # name of the liquid layout to which the content should be injected 18 String : 22 20 # deprecated, use layout 21 String : 27 23 # max nesting of the url to be resolved by this slug. For example slug "abc" with 24 # max_deep_level 2 will resolve /abc, abc/1, abc/2, but will NOT resolve 25 # abc/2/something. 26 Int : 29 28 HashObject : 34 30 # defines where the file definition will be available after pull; should start 31 # with the module name follow by private/public scope, for example 32 # manual/public/views/pages/my-page 33 String! : 36 35 PageRedifectCode : 38 37 String : 40 39 PageRequestMethod : 42 41 HashObject : 44 43 Boolean : 50 45 # defines the url at which the page will be available, for example if you want the 46 # page to be available at https://example.com/hello/world set the slug to 47 # hello/world. If blank, slug will be derived from physical_file_path, in this 48 # example set physical_file_path to views/pages/hello/world.html.liquid 49 String : 52 51 Int : 53 }