mobilizon.chapril.org-mobil.../js/src/graphql/search.ts

20 lines
307 B
TypeScript
Raw Normal View History

import gql from 'graphql-tag';
export const SEARCH = gql`
query SearchEvents($searchText: String!) {
search(search: $searchText) {
...on Event {
title,
uuid,
__typename
},
...on Actor {
avatarUrl,
domain,
preferredUsername,
__typename
}
}
}
2018-12-21 17:10:39 +01:00
`;