123456789101112131415161718 |
- import {Event} from './event';
- export function EventIdQueryResult(params = {}) {
- const event = Event({
- metadata: {
- type: 'event type',
- value: 'event description',
- },
- });
- return {
- organizationSlug: 'org-slug',
- projectSlug: 'project-slug',
- groupId: event.groupID,
- eventId: event.eventID,
- event,
- ...params,
- };
- }
|