File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change 2222
2323
2424class ProjectFetchType (Enum ):
25+ """How a project has to be fetched to get all requested data.
26+
27+ Some project data can be received only from GraphQl, and some can be
28+ received only with REST. That is based on requested fields.
29+
30+ There is also a dedicated endpoint to get information about all projects
31+ but returns very limited information about the project.
32+
33+ Enums:
34+ GraphQl: Requested project data can be received with GraphQl.
35+ REST: Requested project data can be received with /projects/{project}.
36+ RESTList: Requested project data can be received with /projects.
37+ Can be considered as a subset of 'REST'.
38+ GraphQlAndREST: It is necessary to use GraphQl and REST to get all
39+ requested data.
40+
41+ """
2542 GraphQl = "GraphQl"
2643 REST = "REST"
2744 RESTList = "RESTList"
You can’t perform that action at this time.
0 commit comments