@pipedream/fireflies
Version:
Pipedream Fireflies Components
84 lines (83 loc) • 1.42 kB
JavaScript
export default {
listTranscripts: `
query Transcripts {
transcripts {
id
title
}
}
`,
listTranscriptsByDate: `
query Transcripts($fromDate: DateTime, $limit: Int, $skip: Int) {
transcripts(fromDate: $fromDate, limit: $limit, skip: $skip) {
id
title
transcript_url
duration
date
audio_url
video_url
sentences {
text
}
calendar_id
summary {
action_items
keywords
outline
overview
shorthand_bullet
}
user {
user_id
name
}
}
}
`,
getTranscript: `
query Transcript($transcriptId: String!) {
transcript(id: $transcriptId) {
id
title
transcript_url
duration
date
audio_url
video_url
sentences {
text
}
calendar_id
summary {
action_items
keywords
outline
overview
shorthand_bullet
}
user {
user_id
name
}
}
}
`,
listUsers: `
{
users {
name
user_id
}
}
`,
getUser: `
query User($userId: String!) {
user(id: $userId) {
name
user_id
recent_meeting
}
}
`,
};