Get the comments for a specified event

get_event_comments(id, ..., extra_graphql = NULL, token = meetup_token())

Arguments

id

Required event ID

...

Should be empty. Used for parameter expansion

extra_graphql

A graphql object. Extra objects to return

token

Meetup token

Value

A tibble with the following columns:

  • id

  • comment

  • created

  • like_count

  • member_id

  • member_name

  • link

Examples

if (FALSE) {
comments <- get_event_comments(id = "103349942!chp")
}