Skip to content

Commit

Permalink
propose fix to #82
Browse files Browse the repository at this point in the history
  • Loading branch information
drmowinckels committed Feb 7, 2021
1 parent 672449d commit 89a0e40
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions R/meetup_query.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

#' General Meetup query
#'
#' Create your own query to the Meetup API
#' (https://www.meetup.com/meetup_api/docs/).
#'
#'
#' @param api_path url path to send the meetup query after the 'https://api.meetup.com/'
#' @param ... additional parameters to the query
#'
#' @return raw list results from the query, untitied
#' @export
#'
#' @examples
#' \dontrun{
#'
#' meetup_query("rladies-oslo")
#'
#' meetup_query("rladies-oslo", event_statue = "past")
#'
#' }
meetup_query <- function(api_path,
...){
.fetch_results(api_path,
...)
}

0 comments on commit 89a0e40

Please sign in to comment.