mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-03-31 06:35:43 +00:00
* push posts push posts * unpush posts * fix comment query * locales * fix locales * fix tests * Update webapp/locales/de.json Co-authored-by: Wolfgang Huß <wolle.huss@pjannto.com> * Update webapp/locales/de.json Co-authored-by: Wolfgang Huß <wolle.huss@pjannto.com> * Update webapp/locales/de.json Co-authored-by: Wolfgang Huß <wolle.huss@pjannto.com> * fix unpushedSuccessfully english message * remove paremeters from unpushPost * rename pushPostToTop -> pushPost, tests * update locales & tests webapp * fix lint --------- Co-authored-by: Wolfgang Huß <wolle.huss@pjannto.com>
10 lines
143 B
TypeScript
10 lines
143 B
TypeScript
import gql from 'graphql-tag'
|
|
|
|
export const unpushPost = gql`
|
|
mutation unpushPost($id: ID!) {
|
|
unpushPost(id: $id) {
|
|
id
|
|
}
|
|
}
|
|
`
|