7
7
post :
8
8
summary : The path to which you will send your GraphQL requests - this is where the caching happens.
9
9
description : |
10
- Configuration:
11
- - _TOML_: `handlers_graphql_path`
12
- - _ENV_: `ORBIT_HANDLERS_GRAPHQL_PATH`
10
+ Congiruable using handlers_graphql_path (in config.toml) or ORBIT_HANDLERS_GRAPHQL_PATH (using environment variables)
13
11
requestBody :
14
12
required : true
15
13
content :
@@ -35,23 +33,19 @@ paths:
35
33
type : object
36
34
errors :
37
35
type : object
38
- /flush-all :
36
+ /flush :
39
37
post :
40
38
summary : The path to flush all cached data.
41
39
description : |
42
- Configuration:
43
- - _TOML_: `handlers_flush_all_path`
44
- - _ENV_: `ORBIT_HANDLERS_FLUSH_ALL_PATH`
40
+ Congiruable using handlers_flush_all_path (in config.toml) or ORBIT_HANDLERS_FLUSH_ALL_PATH (using environment variables)
45
41
responses :
46
42
' 200 ' :
47
43
description : Status indicating success or failure of the flush operation.
48
- /flush-by- type :
44
+ /flush. type :
49
45
post :
50
46
summary : The path to flush cached data by GraphQL type.
51
47
description : |
52
- Configuration:
53
- - _TOML_: `handlers_flush_by_type_path`
54
- - _ENV_: `ORBIT_HANDLERS_FLUSH_BY_TYPE_PATH`
48
+ Configurable using handlers_flush_by_type_path (in config.toml) or ORBIT_HANDLERS_FLUSH_BY_TYPE_PATH (using environment variables)
55
49
requestBody :
56
50
required : true
57
51
content :
@@ -68,11 +62,9 @@ paths:
68
62
description : Status indicating success or failure of the flush operation.
69
63
/debug :
70
64
get :
71
- summary : The path to access debug information. This only works for ` in_memory` cache backend, where it returns the entire cache as a JSON object.
65
+ summary : The path to access debug information. This only works for in_memory cache backend, where it returns the entire cache as a JSON object.
72
66
description : |
73
- Configuration:
74
- - _TOML_: `handlers_debug_path`
75
- - _ENV_: `ORBIT_HANDLERS_DEBUG_PATH`
67
+ Congiruable using handlers_debug_path (in config.toml) or ORBIT_HANDLERS_DEBUG_PATH (using environment variables)
76
68
responses :
77
69
' 200 ' :
78
70
description : Debug information in JSON format.
86
78
get :
87
79
summary : The path to check the health status of the service.
88
80
description : |
89
- Configuration:
90
- - _TOML_: `handlers_health_path`
91
- - _ENV_: `ORBIT_HANDLERS_HEALTH_PATH`
81
+ Congiruable using handlers_health_path (in config.toml) or ORBIT_HANDLERS_HEALTH_PATH (using environment variables)
92
82
responses :
93
83
' 200 ' :
94
84
description : Health status in JSON format.
0 commit comments