Hi
I’m looking to use the interaction.raw_content target in a filter for twitter and was hoping someone could answer a query for. Can I use the target to match a hashtag, a term and a user all with the same name but with only one value? CSDL something like this:
interaction.type == “twitter” and
(
interaction.raw_content contains_any “foo”
)
So if i tweet with a message containing “foo” it matches (tested works great).
If I tweet containing “#foo” again matches and is collected (tested).
If I tweet and mention an account named “@foo” it’s not collected? I’ve tried this using my account name and just can’t seem to get it to work.
Have misunderstood how the target works? I’m unsure why it would match #foo and not @foo etc. Should I be using substr rather than contains_any?
Thanks