72 results found
-
Gradle plugin for Data Connect Android development
Firebase should publish a Gradle plugin for Data Connect Android development. The plugin could integrate the code generation into the build process, much like https://github.com/google/protobuf-gradle-plugin.
1 vote -
Aggregation Order by Value
With data connect aggregation queries, I would like to order the returned results by an aggregated value. The below example fails with the message: "Field "count" is not defined by type "LeadOrder". Did you mean ...?"
query {
leads(orderBy: [{ _count: DESC }], limit: 10) {
company
_count
}
}3 votes -
1 vote
-
Google play store
update all application
1 vote -
Order field by Descending Nulls Last
Provide order by option that moves nulls to the end of results per postgresql docs
NULLS LAST(https://www.postgresql.org/docs/current/queries-order.html#QUERIES-ORDER)Nulls are last for ASC sorts by default, so it's only needed for DESC, so I'd propose adding a new
DESC_NULLS_LASTprop to the OrderDirection enum (https://firebase.google.com/docs/reference/data-connect/gql/enum#OrderDirection)1 vote -
Field Validation
Allow validation (e.g. min/max values, length, regex match) with custom error messages on both fields and variables. Enforce validation server-side but also provide client-side validation of variables for generated SDKs.
41 votes -
Integrate with Row Level Security (RLS)
Allow clear integration with Postgres's RLS while defining access permissions.
38 votes -
Custom Serverless Resolvers
Write Node.js resolvers to enhance Data Connect with arbitrary server logic. Resolvers will be authored alongside the Data Connect schema and deployed to serverless infrastructure. Resolvers can either provide new top-level Query and Mutation fields or integrate with SQL table types.
39 votes -
@Model Operations support in Schema (@auth derivative)
Right now we have separate Query and Mutation. To streamline, especially when using @auth
enum ModelOperation {
create
update
delete
read
}@auth object types that are annotated with @auth are protected by a set of authorization rules that give additional controls than the top level authorization on an API.
Use the @auth directive on object type definitions and field definitions in the project's schema.
When using the @auth directive on object type definitions that are also annotated with @model, all resolvers that return objects of that type would be protected. When using the @auth directive on a field definition,…
2 votes -
datos de contacto para mi aplicacion
necesito que mi aplicacion recolecte los datos del consultante Nombre, Whatsapp con codigo de pais + email de contacto
2 votes -
Low-Latency Data Cache
Allow configurable caching of query results for reduced end-to-end latency and reduced resource pressure on underlying data sources.
32 votes -
1 vote
-
How connect DBeaver in localhost database?
How connect DBeaver in localhost database?
I love DBeaver and i can connect in my production database but i cant connect in localhost database, always i try connect the firebase emulator give an generic error and crash.
I can use the firebase dataconnect:sql:shell but is not so good like DBeaver3 votes -
Schema Creator Tool in the Firebase Console
Support creating GraphQL schema in the Firebase console
31 votes -
Allow to connect emulator with a tier SQL client
I get that firebase dev really want to push their DataConnect api but any full featured tiers SQL client would allow us to have a wider view of what worked in our dev environment.
It would be way faster than using any official cli or any generated query to look how our data is shaped within the database.
3 votes -
Sending arrays as parameters, to allow scaling.
When building simple select queries in GraphQL (really simple ones), the underlying query is being transformed, sending the values through as parameters.
As you can use arrays as parameters, that would allow the DBs to scale as it makes this more robust. Without scaling, it will limit production applications form fully investing.
As an example you run into instances where the select for 50 columns in the schema (a standard employment record, nothing special) is transformed and we end up getting the dreaded 100 parameters error. This is a Postgres issue, but can be avoided.
The Error for the fun…
4 votes -
Rehan
Hello me Rehan
1 vote -
Support inline/embeded types stored as structured JSONB columns
Allow storing structured types in JSONB columns using an @inline (or @embed) directive on the field.
type Address {
street: String!
street2: String
city: String!
state: String!
zipcode: String!
}type User @table {
address: Address @inline # stores as JSONB
}19 votes -
1 vote
-
SolidJS SDK for data connect
I need to have this SDK because for now only React and Angular have SDK.
2 votes
- Don't see your idea?