File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 76
76
- ` GRAPH_QUERY_CACHE_STALE_PERIOD ` : Number of queries after which a cache
77
77
entry can be considered stale. Defaults to 100.
78
78
- ` GRAPH_MAX_API_VERSION ` : Maximum ` apiVersion ` supported, if a developer tries to create a subgraph
79
- with a higher ` apiVersion ` than this in their mappings, they'll receive an error. Defaults to ` 0.0.5 ` .
79
+ with a higher ` apiVersion ` than this in their mappings, they'll receive an error. Defaults to ` 0.0.6 ` .
80
80
- ` GRAPH_RUNTIME_MAX_STACK_SIZE ` : Maximum stack size for the WASM runtime, if exceeded the execution
81
81
stops and an error is thrown. Defaults to 512KiB.
82
82
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ lazy_static! {
64
64
static ref MAX_API_VERSION : semver:: Version = std:: env:: var( "GRAPH_MAX_API_VERSION" )
65
65
. ok( )
66
66
. and_then( |api_version_str| semver:: Version :: parse( & api_version_str) . ok( ) )
67
- . unwrap_or( semver:: Version :: new( 0 , 0 , 5 ) ) ;
67
+ . unwrap_or( semver:: Version :: new( 0 , 0 , 6 ) ) ;
68
68
}
69
69
70
70
/// Rust representation of the GraphQL schema for a `SubgraphManifest`.
You can’t perform that action at this time.
0 commit comments