-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #771 from Permify/docs
docs: upgrade the api services
- Loading branch information
Showing
13 changed files
with
268 additions
and
36 deletions.
There are no files selected for viewing
This file contains 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 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,105 @@ | ||
import Tabs from '@theme/Tabs'; | ||
import TabItem from '@theme/TabItem'; | ||
|
||
# Read Attributes | ||
|
||
Read API allows for directly querying the stored graph data to display and filter stored attributes. | ||
|
||
## Request | ||
|
||
**Path:** POST /v1/tenants/{tenant_id}/data/attributes/read | ||
|
||
[![View in Swagger](http://jessemillar.github.io/view-in-swagger-button/button.svg)](https://permify.github.io/permify-swagger/#/Data/data.attributes.read) | ||
|
||
| Required | Argument | Type | Description | | ||
|----------|----------|---------|---------|-------------------------------------------------------------------------------------------| | ||
| [x] | tenant_id | string | identifier of the tenant, if you are not using multi-tenancy (have only one tenant) use pre-inserted tenant `t1` for this field. | ||
| [ ] | snap_token | string | the snap token to avoid stale cache, see more details on [Snap Tokens](../../reference/snap-tokens) | | ||
| [x] | entity | object | contains entity type and id of the entity. Example: repository:1”. | ||
| [x] | attributes | string array | attributes of the given entity | | ||
|
||
|
||
<Tabs> | ||
<TabItem value="go" label="Go"> | ||
|
||
```go | ||
rr, err: = client.Data.Relationship.Read(context.Background(), & v1.Data.RelationshipReadRequest { | ||
TenantId: "t1", | ||
Metadata: &v1.Data.RelationshipReadRequestMetadata { | ||
SnapToken: "" | ||
}, | ||
Filter: &v1.TupleFilter { | ||
Entity: &v1.EntityFilter { | ||
Type: "organization", | ||
Ids: []string {"1"} , | ||
}, | ||
Relation: "member", | ||
Subject: &v1.SubjectFilter { | ||
Type: "", | ||
Id: []string {""}, | ||
Relation: "" | ||
}} | ||
}) | ||
``` | ||
|
||
</TabItem> | ||
|
||
<TabItem value="node" label="Node"> | ||
|
||
```javascript | ||
client.data.relationship.read({ | ||
tenantId: "t1", | ||
metadata: { | ||
snap_token: "", | ||
}, | ||
filter: { | ||
entity: { | ||
type: "organization", | ||
ids: [ | ||
"1" | ||
] | ||
}, | ||
relation: "member", | ||
subject: { | ||
type: "", | ||
ids: [], | ||
relation: "" | ||
} | ||
} | ||
}).then((response) => { | ||
// handle response | ||
}) | ||
``` | ||
|
||
</TabItem> | ||
<TabItem value="curl" label="cURL"> | ||
|
||
```curl | ||
curl --location --request POST 'localhost:3476/v1/tenants/{tenant_id}/data/relationships/read' \ | ||
--header 'Content-Type: application/json' \ | ||
--data-raw '{ | ||
metadata: { | ||
snap_token: "", | ||
}, | ||
filter: { | ||
entity: { | ||
type: "organization", | ||
ids: [ | ||
"1" | ||
] | ||
}, | ||
relation: "member", | ||
subject: { | ||
type: "", | ||
ids: [], | ||
relation: "" | ||
} | ||
} | ||
}' | ||
``` | ||
</TabItem> | ||
</Tabs> | ||
|
||
## Need any help ? | ||
|
||
Our team is happy to help you get started with Permify. If you'd like to learn more about using Permify in your app or have any questions about this example, [schedule a call with one of our Permify engineer](https://meetings-eu1.hubspot.com/ege-aytin/call-with-an-expert). |
This file contains 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 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.