Skip to content

Commit

Permalink
Merge pull request #63 from daisybio/psivec_dataset
Browse files Browse the repository at this point in the history
swagger sorting
  • Loading branch information
strasserle authored Jan 23, 2025
2 parents 5176851 + db3a5ac commit 978fa2d
Showing 1 changed file with 26 additions and 6 deletions.
32 changes: 26 additions & 6 deletions swagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1447,16 +1447,23 @@ paths:
- <
- ">"
default: <
- name: sorting
- name: edgeSorting
in: query
required: false
description: Possibilities for sorting of the results.
description: Possibilities for sorting of the edges.
schema:
type: string
enum:
- pValue
- mscor
- correlation
- name: nodeSorting
in: query
required: false
description: Possibilities for sorting of the nodes.
schema:
type: string
enum:
- betweenness
- degree
- eigenvector
Expand All @@ -1467,16 +1474,29 @@ paths:
schema:
type: boolean
default: true
- name: limit
- name: maxNodes
in: query
description: Number of results that should be shown. Default value is 100 and can be up to 1000. For more results please use batches, the provided offset parameter or download the whole dataset.
description: Number of nodes that should be shown. Default value is 100 and can be up to 1000. For more results please use batches, the provided offset parameter or download the whole dataset.
required: false
schema:
type: integer
default: 100
- name: offset
- name: maxEdges
in: query
description: Starting point from where results should be shown.
description: Number of edges that should be shown. Default value is 100 and can be up to 1000. For more results please use batches, the provided offset parameter or download the whole dataset.
required: false
schema:
type: integer
default: 100
- name: offsetNodes
in: query
description: Starting point from where nodes should be shown.
required: false
schema:
type: integer
- name: offsetEdges
in: query
description: Starting point from where edges should be shown.
required: false
schema:
type: integer
Expand Down

0 comments on commit 978fa2d

Please sign in to comment.