Hasura Firebase Performance

Hasura connect Interceptor implementation that sends querys metric data to Firebase.
Report Bug
·
Request Feature
Table of Contents
About The Project
Hasura's Interceptor implementation that sends http request metric data to Firebase.
Sponsors

Getting Started
To install Hasura Connect and Hasura Firebase Performance in your project you can follow the instructions below:
a) Add in your pubspec.yaml:
dependencies:
hasura_connect: <last version>
hasura_firebase_performance: <last version>
b) or use slidy:
slidy install hasura_connect, hasura_firebase_performance
How To Use
A simple usage example:
//import
import 'package:core_module/core_module.dart';
import 'package:hasura_connect/src/presenter/hasura_connect_base.dart';
class MockHasuraService implements IHasuraService{
HasuraConnect _connect;
MockHasuraService(){
_connect = HasuraConnect("https://meuHasura.com.br/v1/graphql", interceptors: [HasuraPerformanceInterceptor()
]);
}
@override
HasuraConnect get connection => _connect;
}
final _hasuraConnect = HasuraConnect();
final hasuraPerformanceInterceptor = HasuraPerformanceInterceptor()
_hasuraConnect.interceptors.add(hasuraPerformanceInterceptor);
_For more examples, please refer to the 🚧 Documentation - Currently being updated 🚧 .
Features
- ✅ Sends http request metric data to Firebase.
Right now this package has concluded all his intended features. If you have any suggestions or find something to report, see below how to contribute to it.
Contributing
🚧 Contributing Guidelines - Currently being updated 🚧
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the appropriate tag. Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Remember to include a tag, and to follow Conventional Commits and Semantic Versioning when uploading your commit and/or creating the issue.
License
Distributed under the MIT License. See LICENSE.txt
for more information.
Contact
Flutterando Community
Contributors
Maintaned by
Built and maintained by Flutterando.