Skip to content

Commit 3b31890

Browse files
committed
fix query
1 parent a5de78f commit 3b31890

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/app/src/entities/events/api/get-events-from-api.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import graphqlClient from "@/shared/api/graphql/graphqlClientApollo";
22
import { gql } from "@apollo/client";
33

44
const EVENTS_QUERY = gql`
5-
query GET_ACTIVITIES($ids: [String], $offset: Int, $limit: Int, $search: String) {
6-
InfrahubEvent(related_node__ids: $ids, offset: $offset, limit: $limit, q: $search) {
5+
query GET_ACTIVITIES($ids: [String], $offset: Int, $limit: Int) {
6+
InfrahubEvent(related_node__ids: $ids, offset: $offset, limit: $limit) {
77
count
88
edges {
99
node {

0 commit comments

Comments
 (0)