Hello everyone, my growthbook is integrated with t...
# experimentation
h
Hello everyone, my growthbook is integrated with the amplitude service via bigquery. Amplitude has such a concept as user_properies, how can these user_properies be added to growthbook. We need these user_properties to work with feature flags/experiments. I understand this is an analogue of attributes in growthbook.
b
Depends on what you need. You need it for targeting? Then attributes collected in the sdk instrumentation. You need it for analysis slices? Then dimensions in your experiment impressions query.
h
I need to use it for targeting. Can I get it from bigQuery in my growthBook admin panel? or I have to update it with help
updateAttributes
function every time when I update it for my amplitude. But in this case this attributes these attributes will be impermanent. @billions-house-96196 explain me this case step by step please if you can)
s
For targeting, you'll update your attributes in GrowthBook and set up the conditions on your flag or experiment. Then, in your app, you'll pass in the actual attribute values. For example, you might have a boolean
isProMember
. You'll set it up in GB and use it in a flag:
on
when it's true,
off
when it's false. Then, in your app, you'll pass it to the SDK attribute: `isProMember`:
isProMemberValue
(or whatever this is called in your app).