with_account()
lets you add additional accounts to a query()
. It's
root brands and timezone are added, as appropriate. This is
part of the query()
language.
with_account(.query, account)
.query | |
---|---|
account | The |
A query()
object
Other verbs for the query language: group_mentions_by()
,
compare_mentions()
, with_mention_fields()
, with_mention_order()
query()
is a way to manually create queries.
if (FALSE) { account("TEST01AA") %>% filter_mentions("published inthelast week") %>% with_account("TEST03AA") account("TEST01AA") %>% filter_mentions("published inthelast week") %>% with_account(account("TEST03AA")) }