Communities are a part of social features functionality provided by Opigno Enterprise. They allow to group users by interests and discuss different topics by sharing posts inside a community. A community can be created by any user associated with a context withDocumentation Index
Fetch the complete documentation index at: https://docs.opigno.com/llms.txt
Use this file to discover all available pages before exploring further.
AUTHENTICATED scope.
The current API user will be set as a community owner and will not be considered as a member.
To create a community, createCommunity mutation should be executed.
Mutation has a single required incoming argument - data that represents CommunityInput object:
| Parameter | Type | Description | Default |
|---|---|---|---|
title | String | Required. Represents the community title. | — |
description | String | Required. A community description. Available HTML tags are: <br>, <p>, <h2>, <h3>, <h4>, <h5>, <h6>, <strong>, <em>, <u>, <s>, <sub>, <sup>, <a href>, <ul>, <ol start>, <li>. Any other tag will trimmed. | — |
visibility | CommunityVisibility | Required. A community visibility. | — |
postNotificationEnabled | Boolean | A flag that indicates that a notification about a new post is enabled. | true |
imageBase64 | UploadedFileInput | The community image formatted as base64 string. | — |
Community object. Detailed description and the full list of available properties can be found here.