PHPackages                             hawksama/magento2-shopfinder-graphql - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. hawksama/magento2-shopfinder-graphql

ActiveMagento2-module[API Development](/categories/api)

hawksama/magento2-shopfinder-graphql
====================================

Shopfinder GraphQL module for Magento 2

1.0.2(1y ago)03PHPPHP ~8.1||~8.2||~8.3

Since Mar 24Pushed 1y ago1 watchersCompare

[ Source](https://github.com/Hawksama/magento2-shopfinder-graphql)[ Packagist](https://packagist.org/packages/hawksama/magento2-shopfinder-graphql)[ RSS](/packages/hawksama-magento2-shopfinder-graphql/feed)WikiDiscussions master Synced today

READMEChangelog (3)Dependencies (2)Versions (3)Used By (0)

Shopfinder GraphQL Module for Magento 2
=======================================

[](#shopfinder-graphql-module-for-magento-2)

A Magento 2 module that provides GraphQL API endpoints for managing shop locations, with a dedicated admin interface for shop management.

Features
--------

[](#features)

- GraphQL API for shop management (create, read, update)
- Admin interface for shop management under `Content > Shopfinder`
- Input validation for shop data
- Proper error handling and logging
- Country code standardization

Installation
------------

[](#installation)

Add the module to your project:

```
composer require hawksama/magento2-shopfinder-graphql
```

GraphQL Endpoints
=================

[](#graphql-endpoints)

Here are practical examples of all available GraphQL operations for the Shopfinder module:

Query All Shops
---------------

[](#query-all-shops)

```
query {
  shops {
    shop_id
    name
    identifier
    country
  }
}

```

Query Shop by ID
----------------

[](#query-shop-by-id)

```
query {
  shopByIdentifier(identifier: "shop_in_romania") {
    shop_id
    name
    identifier
    country
  }
}

```

Query Update Shop
-----------------

[](#query-update-shop)

```
mutation {
  updateShop(input: {
    shop_id: 1
    name: "Updated Shop Name"
    country: "RO"
  }) {
    shop {
      shop_id
      name
      identifier
      country
    }
  }
}

```

Query Delete Shop
-----------------

[](#query-delete-shop)

### This is not allowed via GraphQL, only via the admin interface

[](#this-is-not-allowed-via-graphql-only-via-the-admin-interface)

You can test it by using:

```
{
  "query": "mutation { deleteShop(id: 2) { success message } }"
}

```

Query Create Shop
-----------------

[](#query-create-shop)

#### This is not allowed via GraphQL, only via the admin interface

[](#this-is-not-allowed-via-graphql-only-via-the-admin-interface-1)

```
{
    "query": "mutation { createShop(input: { name: \"Shop in Bulgaria\", identifier: \"shop_in_bulgaria\", country: \"BG\" }) { shop { shop_id name identifier country } } }"
}

```

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance42

Moderate activity, may be stable

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

467d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b5d9b3bcbbbebb62b1f53afd772f4a81d02a77e969b0acc23e565a28f64445c8?d=identicon)[hawksama](/maintainers/hawksama)

---

Top Contributors

[![Hawksama](https://avatars.githubusercontent.com/u/46504593?v=4)](https://github.com/Hawksama "Hawksama (3 commits)")

### Embed Badge

![Health badge](/badges/hawksama-magento2-shopfinder-graphql/health.svg)

```
[![Health](https://phpackages.com/badges/hawksama-magento2-shopfinder-graphql/health.svg)](https://phpackages.com/packages/hawksama-magento2-shopfinder-graphql)
```

###  Alternatives

[smile/elasticsuite

Magento 2 merchandising and search engine built on ElasticSearch

8064.7M49](/packages/smile-elasticsuite)[mollie/magento2

Mollie Payment Module for Magento 2

1131.9M16](/packages/mollie-magento2)[adyen/module-payment

Official Magento2 Plugin to connect to Payment Service Provider Adyen.

1673.2M10](/packages/adyen-module-payment)[magmodules/magento2-channable

Channable integration for Magento 2

311.5M](/packages/magmodules-magento2-channable)[elgentos/module-prismicio

Magento 2 - Prismic.io integration

39119.0k4](/packages/elgentos-module-prismicio)[graycore/magento2-graphql-introspection-cache

1017.3k](/packages/graycore-magento2-graphql-introspection-cache)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
