Skip to content
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

Add codeblock component #45

Merged
merged 13 commits into from
Sep 14, 2021
Prev Previous commit
Next Next commit
updating json to flureeql
  • Loading branch information
fdmmarshall committed Sep 7, 2021
commit ad0743261f5c71e4bec34fc8b46f678d60b15b37
12 changes: 6 additions & 6 deletions website/docs/overview/fluree_basics.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ you adding this basic schema and walking through the documentation section-by-se

<Tabs
defaultValue="json"
values={[{label: 'JSON', value: 'json'},
values={[{label: 'FlureeQL', value: 'json'},
{label: 'Curl', value: 'bash'},
{label: 'GraphQL', value: 'graphql'},
{label: 'Sparql', value: 'sparql'}]}>
{label: 'SparQL', value: 'sparql'}]}>
<TabItem value="json">

```json
Expand Down Expand Up @@ -168,10 +168,10 @@ The below transaction creates the following predicates:

<Tabs
defaultValue="json"
values={[{label: 'JSON', value: 'json'},
values={[{label: 'FlureeQL', value: 'json'},
{label: 'Curl', value: 'bash'},
{label: 'GraphQL', value: 'graphql'},
{label: 'Sparql', value: 'sparql'}]}>
{label: 'SparQL', value: 'sparql'}]}>
<TabItem value="json">

```json
Expand Down Expand Up @@ -484,10 +484,10 @@ three movies.

<Tabs
defaultValue="json"
values={[{label: 'JSON', value: 'json'},
values={[{label: 'FlureeQL', value: 'json'},
{label: 'Curl', value: 'bash'},
{label: 'GraphQL', value: 'graphql'},
{label: 'Sparql', value: 'sparql'}]}>
{label: 'SparQL', value: 'sparql'}]}>
<TabItem value="json">

```json
Expand Down
4 changes: 2 additions & 2 deletions website/docs/overview/transact/adding-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ The keys can contain the full predicate name including the namespace, i.e. `chat

<Tabs
defaultValue="json"
values={[{label: 'JSON', value: 'json'},
values={[{label: 'FlureeQL', value: 'json'},
{label: 'Curl', value: 'bash'},
{label: 'GraphQL', value: 'graphql'},
{label: 'Sparql', value: 'sparql'}]}>
{label: 'SparQL', value: 'sparql'}]}>
<TabItem value="json">

```json
Expand Down
16 changes: 8 additions & 8 deletions website/docs/overview/transact/deleting-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ To delete/retract an entire subject, use the `_id` key along with only `"_action

<Tabs
defaultValue="json"
values={[{label: 'JSON', value: 'json'},
values={[{label: 'FlureeQL', value: 'json'},
{label: 'Curl', value: 'bash'},
{label: 'GraphQL', value: 'graphql'},
{label: 'Sparql', value: 'sparql'}]}>
{label: 'SparQL', value: 'sparql'}]}>
<TabItem value="json">

```json
Expand Down Expand Up @@ -70,10 +70,10 @@ You can delete (retract) a single predicate by setting the value of `_id` to a t

<Tabs
defaultValue="json"
values={[{label: 'JSON', value: 'json'},
values={[{label: 'FlureeQL', value: 'json'},
{label: 'Curl', value: 'bash'},
{label: 'GraphQL', value: 'graphql'},
{label: 'Sparql', value: 'sparql'}]}>
{label: 'SparQL', value: 'sparql'}]}>
<TabItem value="json">

```json
Expand Down Expand Up @@ -131,10 +131,10 @@ For example, to delete just the number, 98, from `["person/handle", "jdoe"]`'s

<Tabs
defaultValue="json"
values={[{label: 'JSON', value: 'json'},
values={[{label: 'FlureeQL', value: 'json'},
{label: 'Curl', value: 'bash'},
{label: 'GraphQL', value: 'graphql'},
{label: 'Sparql', value: 'sparql'}]}>
{label: 'SparQL', value: 'sparql'}]}>
<TabItem value="json">

```json
Expand Down Expand Up @@ -190,10 +190,10 @@ To delete all of `["person/handle", "jdoe"]`'s favorite numbers, we would issue:

<Tabs
defaultValue="json"
values={[{label: 'JSON', value: 'json'},
values={[{label: 'FlureeQL', value: 'json'},
{label: 'Curl', value: 'bash'},
{label: 'GraphQL', value: 'graphql'},
{label: 'Sparql', value: 'sparql'}]}>
{label: 'SparQL', value: 'sparql'}]}>
<TabItem value="json">

```json
Expand Down
12 changes: 6 additions & 6 deletions website/docs/overview/transact/updating-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ Update using a two-tuple with a unique predicate. i.e. `person/handle` and relev

<Tabs
defaultValue="json"
values={[{label: 'JSON', value: 'json'},
values={[{label: 'FlureeQL', value: 'json'},
{label: 'Curl', value: 'bash'},
{label: 'GraphQL', value: 'graphql'},
{label: 'Sparql', value: 'sparql'}]}>
{label: 'SparQL', value: 'sparql'}]}>
<TabItem value="json">

```json
Expand Down Expand Up @@ -70,10 +70,10 @@ Update using subject id:

<Tabs
defaultValue="json"
values={[{label: 'JSON', value: 'json'},
values={[{label: 'FlureeQL', value: 'json'},
{label: 'Curl', value: 'bash'},
{label: 'GraphQL', value: 'graphql'},
{label: 'Sparql', value: 'sparql'}]}>
{label: 'SparQL', value: 'sparql'}]}>
<TabItem value="json">

```json
Expand Down Expand Up @@ -140,10 +140,10 @@ After issuing the above transaction, we can issue the below transaction, which w

<Tabs
defaultValue="json"
values={[{label: 'JSON', value: 'json'},
values={[{label: 'FlureeQL', value: 'json'},
{label: 'Curl', value: 'bash'},
{label: 'GraphQL', value: 'graphql'},
{label: 'Sparql', value: 'sparql'}]}>
{label: 'SparQL', value: 'sparql'}]}>
<TabItem value="json">

```json
Expand Down