Open up specific angularjs view inside ionic/cordova app using CFBundleURLSchemes

Im using CFBundleURLSchemes to open up a sepcific view in my ionic app, but i don't know how to link to a specific angularjs view. I've tried

myapp:///#/myview

myapp://#/myview

myapp://myview

Ive added this to iOS .plist

<key>CFBundleURLTypes</key>
    <array>
        <dict>
            <key>CFBundleURLName</key>
            <string>com.mycompany.myapp</string>
            <key>CFBundleURLSchemes</key>
            <array>
                <string>myapp</string>
            </array>
        </dict>
    </array>

The app opens up ok.