Skip to content

Commit

Permalink
Add markdown files for the updated schema
Browse files Browse the repository at this point in the history
  • Loading branch information
palisadoes authored and github-actions[bot] committed Nov 16, 2023
1 parent f30bea3 commit 4197760
Show file tree
Hide file tree
Showing 6 changed files with 137 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/schema/generated.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ Use the docs in the sidebar to find out how to use the schema:
- **Allowed operations**: queries and mutations.
- **Schema-defined types**: scalars, objects, enums, interfaces, unions, and input objects.

<small><i>Generated on 10/28/2023, 8:37:35 PM.</i></small>
<small><i>Generated on 11/16/2023, 5:37:45 PM.</i></small>
42 changes: 42 additions & 0 deletions docs/schema/mutations/create-sample-organization.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
id: create-sample-organization
title: createSampleOrganization
hide_table_of_contents: false
---

export const Bullet = () => <><span style={{ fontWeight: 'normal', fontSize: '.5em', color: 'var(--ifm-color-secondary-darkest)' }}>&nbsp;&nbsp;</span></>

export const SpecifiedBy = (props) => <>Specification<a className="link" style={{ fontSize:'1.5em', paddingLeft:'4px' }} target="\_blank" href={props.url} title={'Specified by ' + props.url}>⎘</a></>

export const Badge = (props) => <><span className={'badge badge--' + props.class}>{props.text}</span></>

import { useState } from 'react';

export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => {
const [open, setOpen] = useState(startOpen);
return (
<details {...(open ? { open: true } : {})} className="details" style={{ border:'none', boxShadow:'none', background:'var(--ifm-background-color)' }}>
<summary
onClick={(e) => {
e.preventDefault();
setOpen((open) => !open);
}}
style={{ listStyle:'none' }} >
{open ? dataOpen : dataClose}
</summary>
{open && children}
</details>
);
};

No description

```graphql
createSampleOrganization: Boolean!
```

### Type

#### [`Boolean`](../../../docs/schema/scalars/boolean) <Badge class="secondary" text="scalar"/>

> The `Boolean` scalar type represents `true` or `false`.
42 changes: 42 additions & 0 deletions docs/schema/mutations/remove-sample-organization.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
id: remove-sample-organization
title: removeSampleOrganization
hide_table_of_contents: false
---

export const Bullet = () => <><span style={{ fontWeight: 'normal', fontSize: '.5em', color: 'var(--ifm-color-secondary-darkest)' }}>&nbsp;&nbsp;</span></>

export const SpecifiedBy = (props) => <>Specification<a className="link" style={{ fontSize:'1.5em', paddingLeft:'4px' }} target="\_blank" href={props.url} title={'Specified by ' + props.url}>⎘</a></>

export const Badge = (props) => <><span className={'badge badge--' + props.class}>{props.text}</span></>

import { useState } from 'react';

export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => {
const [open, setOpen] = useState(startOpen);
return (
<details {...(open ? { open: true } : {})} className="details" style={{ border:'none', boxShadow:'none', background:'var(--ifm-background-color)' }}>
<summary
onClick={(e) => {
e.preventDefault();
setOpen((open) => !open);
}}
style={{ listStyle:'none' }} >
{open ? dataOpen : dataClose}
</summary>
{open && children}
</details>
);
};

No description

```graphql
removeSampleOrganization: Boolean!
```

### Type

#### [`Boolean`](../../../docs/schema/scalars/boolean) <Badge class="secondary" text="scalar"/>

> The `Boolean` scalar type represents `true` or `false`.
50 changes: 50 additions & 0 deletions docs/schema/queries/is-sample-organization.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
id: is-sample-organization
title: isSampleOrganization
hide_table_of_contents: false
---

export const Bullet = () => <><span style={{ fontWeight: 'normal', fontSize: '.5em', color: 'var(--ifm-color-secondary-darkest)' }}>&nbsp;&nbsp;</span></>

export const SpecifiedBy = (props) => <>Specification<a className="link" style={{ fontSize:'1.5em', paddingLeft:'4px' }} target="\_blank" href={props.url} title={'Specified by ' + props.url}>⎘</a></>

export const Badge = (props) => <><span className={'badge badge--' + props.class}>{props.text}</span></>

import { useState } from 'react';

export const Details = ({ dataOpen, dataClose, children, startOpen = false }) => {
const [open, setOpen] = useState(startOpen);
return (
<details {...(open ? { open: true } : {})} className="details" style={{ border:'none', boxShadow:'none', background:'var(--ifm-background-color)' }}>
<summary
onClick={(e) => {
e.preventDefault();
setOpen((open) => !open);
}}
style={{ listStyle:'none' }} >
{open ? dataOpen : dataClose}
</summary>
{open && children}
</details>
);
};

No description

```graphql
isSampleOrganization(
id: ID!
): Boolean!
```

### Arguments

#### [<code style={{ fontWeight: 'normal' }}>isSampleOrganization.<b>id</b></code>](#)<Bullet />[`ID!`](../../../docs/schema/scalars/id) <Badge class="secondary" text="non-null"/> <Badge class="secondary" text="scalar"/>

>
### Type

#### [`Boolean`](../../../docs/schema/scalars/boolean) <Badge class="secondary" text="scalar"/>

> The `Boolean` scalar type represents `true` or `false`.
2 changes: 1 addition & 1 deletion docs/schema/scalars/boolean.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ scalar Boolean

### Returned by

[`acceptAdmin`](../../../docs/schema/mutations/accept-admin) <Badge class="secondary" text="mutation"/><Bullet />[`forgotPassword`](../../../docs/schema/mutations/forgot-password) <Badge class="secondary" text="mutation"/><Bullet />[`hasSubmittedFeedback`](../../../docs/schema/queries/has-submitted-feedback) <Badge class="secondary" text="query"/><Bullet />[`logout`](../../../docs/schema/mutations/logout) <Badge class="secondary" text="mutation"/><Bullet />[`recaptcha`](../../../docs/schema/mutations/recaptcha) <Badge class="secondary" text="mutation"/><Bullet />[`rejectAdmin`](../../../docs/schema/mutations/reject-admin) <Badge class="secondary" text="mutation"/><Bullet />[`revokeRefreshTokenForUser`](../../../docs/schema/mutations/revoke-refresh-token-for-user) <Badge class="secondary" text="mutation"/><Bullet />[`saveFcmToken`](../../../docs/schema/mutations/save-fcm-token) <Badge class="secondary" text="mutation"/><Bullet />[`updateUserType`](../../../docs/schema/mutations/update-user-type) <Badge class="secondary" text="mutation"/>
[`acceptAdmin`](../../../docs/schema/mutations/accept-admin) <Badge class="secondary" text="mutation"/><Bullet />[`createSampleOrganization`](../../../docs/schema/mutations/create-sample-organization) <Badge class="secondary" text="mutation"/><Bullet />[`forgotPassword`](../../../docs/schema/mutations/forgot-password) <Badge class="secondary" text="mutation"/><Bullet />[`hasSubmittedFeedback`](../../../docs/schema/queries/has-submitted-feedback) <Badge class="secondary" text="query"/><Bullet />[`isSampleOrganization`](../../../docs/schema/queries/is-sample-organization) <Badge class="secondary" text="query"/><Bullet />[`logout`](../../../docs/schema/mutations/logout) <Badge class="secondary" text="mutation"/><Bullet />[`recaptcha`](../../../docs/schema/mutations/recaptcha) <Badge class="secondary" text="mutation"/><Bullet />[`rejectAdmin`](../../../docs/schema/mutations/reject-admin) <Badge class="secondary" text="mutation"/><Bullet />[`removeSampleOrganization`](../../../docs/schema/mutations/remove-sample-organization) <Badge class="secondary" text="mutation"/><Bullet />[`revokeRefreshTokenForUser`](../../../docs/schema/mutations/revoke-refresh-token-for-user) <Badge class="secondary" text="mutation"/><Bullet />[`saveFcmToken`](../../../docs/schema/mutations/save-fcm-token) <Badge class="secondary" text="mutation"/><Bullet />[`updateUserType`](../../../docs/schema/mutations/update-user-type) <Badge class="secondary" text="mutation"/>

### Member of

Expand Down
Loading

0 comments on commit 4197760

Please sign in to comment.