-
Notifications
You must be signed in to change notification settings - Fork 72
[SYNPY-1623] Factory function for get and creation of link entity #1243
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
BryanFauble
wants to merge
11
commits into
develop
Choose a base branch
from
synpy-1623-factory-get-function
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
9eb7b98
Create factory operations for get, as well as creating the Link Entit…
BryanFauble 1171c0f
Patch unit tests and issues found by copilot
BryanFauble c5a50e4
Fix path assertion in file retrieval tests to use normalized paths
BryanFauble 6979016
Fix version number assignment in _handle_simple_entity to check for a…
BryanFauble b6492f6
Enhance Link functionality and add integration tests
BryanFauble ea18aea
Move the factory_operations.py module to an operations directory so w…
BryanFauble ce4e26a
Update factory_operations documentation to reference operations inste…
BryanFauble 23e4db2
Update entity_services and link modules to improve API documentation
BryanFauble 636cd6f
Fix conditional check in get_async to ensure synapse_id is not provid…
BryanFauble 98ceb7d
Correct return type
BryanFauble 7e82f59
Disable fail-fast in test job strategy
BryanFauble File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,3 +33,4 @@ coverage.xml | |
.ipynb_checkpoints | ||
*.ipynb | ||
.env | ||
test.synapseConfig |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Synapse Factory Operations | ||
|
||
Contained within this file are experimental interfaces for working with the Synapse Python | ||
Client. Unless otherwise noted these interfaces are subject to change at any time. Use | ||
at your own risk. | ||
|
||
## API Reference | ||
|
||
[](){ #factory-get-async } | ||
::: synapseclient.operations.get_async | ||
|
||
[](){ #factory-file-options-async } | ||
::: synapseclient.operations.FileOptions | ||
options: | ||
inherited_members: true | ||
|
||
[](){ #factory-activity-options-async } | ||
::: synapseclient.operations.ActivityOptions | ||
options: | ||
inherited_members: true | ||
|
||
[](){ #factory-table-options-async } | ||
::: synapseclient.operations.TableOptions | ||
options: | ||
inherited_members: true | ||
|
||
[](){ #factory-link-options-async } | ||
::: synapseclient.operations.LinkOptions | ||
options: | ||
inherited_members: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[](){ #link-async } | ||
# Link | ||
|
||
Contained within this file are experimental interfaces for working with the Synapse Python | ||
Client. Unless otherwise noted these interfaces are subject to change at any time. Use | ||
at your own risk. | ||
|
||
## API Reference | ||
|
||
::: synapseclient.models.Link | ||
options: | ||
inherited_members: true | ||
members: | ||
- get_async | ||
- store_async | ||
--- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Synapse Factory Operations | ||
|
||
Contained within this file are experimental interfaces for working with the Synapse Python | ||
Client. Unless otherwise noted these interfaces are subject to change at any time. Use | ||
at your own risk. | ||
|
||
## API Reference | ||
|
||
[](){ #factory-get-sync } | ||
::: synapseclient.operations.get | ||
|
||
[](){ #factory-file-options-sync } | ||
::: synapseclient.operations.FileOptions | ||
options: | ||
inherited_members: true | ||
|
||
[](){ #factory-activity-options-sync } | ||
::: synapseclient.operations.ActivityOptions | ||
options: | ||
inherited_members: true | ||
|
||
[](){ #factory-table-options-sync } | ||
::: synapseclient.operations.TableOptions | ||
options: | ||
inherited_members: true | ||
|
||
[](){ #factory-link-options-sync } | ||
::: synapseclient.operations.LinkOptions | ||
options: | ||
inherited_members: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[](){ #link-sync } | ||
# Link | ||
|
||
Contained within this file are experimental interfaces for working with the Synapse Python | ||
Client. Unless otherwise noted these interfaces are subject to change at any time. Use | ||
at your own risk. | ||
|
||
## API Reference | ||
|
||
::: synapseclient.models.Link | ||
options: | ||
inherited_members: true | ||
members: | ||
- get | ||
- store | ||
--- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.